import Link from 'next/link' import { ToggleThemeButton } from '@/components/toggle-theme-button' import Logo from '@/public/logo.svg' import { FOLLOW_US_LINKS, INTERNAL_LINKS, EXTERNAL_LINKS, OTHER_LINKS, } from '@/constants/footer-links' interface linksProps { title: string links: Array<{ href: string; label: string }> } const Links = ({ title, links }: linksProps) => (

{title}

) export const Footer = () => ( )