import cx from 'classnames'; import Link from 'next/link'; export interface FooterProps { useDarkBackground?: boolean; } export function Footer({ useDarkBackground }: FooterProps) { return ( ); } export default Footer;