import Link from 'next/link' import Image from 'next/image' import { ToggleThemeButton } from '@/components/toggle-theme-button' 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 = () => ( )