import Link from "next/link"; export default function Footer() { const navigation = { main: [ { name: "Home", href: "/" }, { name: "Explore", href: "#" }, { name: "About", href: "#" }, { name: "Contact", href: "#" }, ], social: [ { name: "Facebook", href: "#", icon: (props: any) => ( ), }, { name: "Instagram", href: "#", icon: (props: any) => ( ), }, { name: "Twitter", href: "#", icon: (props: any) => ( ), }, { name: "GitHub", href: "#", icon: (props: any) => ( ), }, { name: "YouTube", href: "#", icon: (props: any) => ( ), }, ], }; return ( ); }