import { motion } from 'framer-motion'; type FooterLink = { label: string; href: string; target?: '_blank' | '_self'; }; type FooterColumn = { title: string; links: FooterLink[]; }; const footerColumns: FooterColumn[] = [ { title: 'GeoMind', links: [ { label: 'Technology', href: '/technology' }, { label: 'Use Cases', href: '/usecases' }, ], }, { title: 'Company', links: [ { label: 'Manual', href: 'https://manual.grid.tf/', target: '_blank' }, { label: 'Support', href: 'mailto:support@threefold.tech', target: '_blank' }, ], }, ]; export const Footer = () => { return ( ); };