import Link from "next/link" const navigation = { armory: [ { name: 'Builder', href: '/Builder' }, { name: 'Lowers', href: '/Products/lowers' }, { name: 'Uppers', href: '/Products/uppers' }, { name: 'Optics', href: '/Products/optics' }, { name: 'Accessories', href: '/Products/accessories#' }, ], account: [ { name: 'My Account', href: '/MyAccount' }, { name: 'Register', href: '/signin' }, { name: 'Guides', href: '/Guides' }, ], about: [ { name: 'About', href: '#' }, { name: 'Blog', href: '#' }, { name: 'Jobs', href: '#' }, { name: 'Press', href: '#' }, ], legal: [ { name: 'Terms of service', href: '#' }, { name: 'Privacy policy', href: '#' }, { name: 'Affiliate Disclosure', href: '#' }, ], social: [ { name: 'Facebook', href: '#', icon: (props: any) => ( ), }, { name: 'Instagram', href: '#', icon: (props: any) => ( ), }, { name: 'X', href: '#', icon: (props: any) => ( ), }, { name: 'YouTube', href: '#', icon: (props: any) => ( ), }, ], } export default function Footer() { return ( ) }