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