diff --git a/components/Footer.tsx b/components/Footer.tsx
index bb4b194..d278a8d 100644
--- a/components/Footer.tsx
+++ b/components/Footer.tsx
@@ -5,7 +5,7 @@ import sponsors from "../data/sponsors";
type Props = {
href: string;
name: string;
- key: string;
+ title?: string;
};
const SponsorLink = ({ href, name }: Props) => (
@@ -19,6 +19,17 @@ const SponsorLink = ({ href, name }: Props) => (
);
+const SocialLink = ({ href, name, title }: Props) => (
+
+
+
+);
+
export function Footer() {
return (