import Link from 'next/link'; import React from 'react'; import ExternalLink from './external-link'; import { LightBackground } from './lightbackground'; interface LinkListProps { title: string; links: { href: string; title: string; }[]; } const LinkList = ({ title, links }: LinkListProps) => (

{title}

); export const Footer = () => ( );