import React from "react"; import EmailComponent from "./EmailComponent"; import sponsors from "../data/sponsors"; type Props = { href: string; name: string; title?: string; }; const SponsorLink = ({ href, name }: Props) => ( ); const SocialLink = ({ href, name, title }: Props) => ( ); export function Footer() { return ( ); }