import Link from 'next/link' /* This example requires some changes to your config: ``` // tailwind.config.js module.exports = { // ... plugins: [ // ... require('@tailwindcss/forms'), ], } ``` */ const navigation = { collections: [ { name: 'Abrasives', href: '/collections/abrasives' }, { name: 'Adhesives', href: '/collections/adhesives' }, { name: 'Gloves', href: '/collections/gloves' }, { name: 'Oscillating Accessories', href: '/collections/oscillating-accessories', }, { name: 'Industrial', href: '/collections/industrial' }, ], company: [ { name: 'About', href: '/contact-us' }, { name: 'Jobs', href: '/contact-us' }, { name: 'Help', href: '/contact-us' }, ], policies: [ { name: 'Refund Policy', href: '/policies/refund-policy' }, { name: 'Privacy Policy', href: '/policies/privacy-policy' }, { name: 'Terms of Service', href: '/policies/terms-of-service' }, ], social: [ { name: 'Facebook', href: 'https://www.facebook.com/LinconsonTools/', icon: (props: any) => ( ), }, { name: 'Instagram', href: 'https://www.instagram.com/linconsontools/', icon: (props: any) => ( ), }, ], } export default function Footer() { return ( ) }