diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 1d3b650..cf478f1 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -1,10 +1,51 @@ import Link from 'next/link'; import Image from 'next/image'; -export default function Footer() { - const currentYear = new Date().getFullYear(); +const footerSections = [ + { + title: 'Product', + links: [ + { label: 'Features', href: '/features' }, + { label: 'Pricing', href: '/pricing' }, + { label: 'Documentation', href: '/docs' }, + { label: 'About', href: '/about' }, + ], + }, + { + title: 'Resources', + links: [ + { label: 'Getting Started', href: '/docs' }, + { label: 'API Reference', href: '/docs#api' }, + { label: 'Community', href: '#' }, + ], + }, + { + title: 'Support', + links: [ + { label: 'Contact', href: 'mailto:support@dashcaddy.net' }, + { label: 'Discord', href: '#' }, + { label: 'Privacy Policy', href: '#' }, + { label: 'Terms of Service', href: '#' }, + ], + }, +]; - const footerSections = [ +const socialLinks = [ + { + icon: ( + + + + ), + label: 'Discord', + href: '#', + }, +]; + +const CURRENT_YEAR = new Date().getFullYear(); + +export default function Footer() { +const footerSections = [ { title: 'Product', links: [ @@ -43,7 +84,6 @@ export default function Footer() { href: 'https://discord.gg/dashcaddy', }, ]; - return (