/* FreeToolzHub — footer */ function FTHFooter({ go }) { const { Icon, Input, Button } = window.DesignSystem_3a7ab0; const { TOOLS } = window.FTH; const pdf = TOOLS.filter(t => t.cat==='pdf').slice(0,4); const img = TOOLS.filter(t => t.cat==='image').slice(0,4); const cols = [ { h:'PDF Tools', items: pdf.map(t => [t.title, '/tool/'+t.id]) }, { h:'Image Tools', items: img.map(t => [t.title, '/tool/'+t.id]) }, { h:'Company', items: [['About','about.html',1],['Blog','blog.html',1],['Contact','contact.html',1],['Privacy','privacy.html',1],['Terms','terms.html',1]] }, ]; const socials = ['twitter','github','linkedin','youtube']; return ( ); } window.FTHFooter = FTHFooter;