diff --git a/src/components/layout/Footer.tsx b/src/components/layout/Footer.tsx index c603b8b..4739084 100644 --- a/src/components/layout/Footer.tsx +++ b/src/components/layout/Footer.tsx @@ -1,104 +1,49 @@ -import { motion } from 'framer-motion'; +import { Link } from 'react-router-dom'; -type FooterLink = { - label: string; - href: string; - target?: '_blank' | '_self'; -}; +const footerLinksColumn1 = [ + { label: 'About', to: '/about' }, + { label: 'Solutions', to: '/solutions' }, + { label: 'Use Cases', to: '/usecases' }, +]; -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' }, - ], - }, +const footerLinksColumn2 = [ + { label: 'Manual', to: '/manual' }, + { label: 'Support', to: '/support' }, + { label: 'Privacy', to: '/privacy' }, ]; export const Footer = () => { + const year = new Date().getFullYear(); + return ( -