diff --git a/public/open-external-link-icon.svg b/public/open-external-link-icon.svg
new file mode 100644
index 0000000..8cffa9d
--- /dev/null
+++ b/public/open-external-link-icon.svg
@@ -0,0 +1,7 @@
+
+
+
\ No newline at end of file
diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx
index 2d8f97e..73c4d8e 100644
--- a/src/components/Footer.tsx
+++ b/src/components/Footer.tsx
@@ -1,11 +1,32 @@
import { type NextPage } from "next/types";
import Image from 'next/image';
+import Link from "next/link";
interface QuickLink {
label: string,
href: string,
}
+const links: QuickLink[] = [
+ {
+ label: "University of Iowa",
+ href: "https://uiowa.edu/",
+ },
+ {
+ label: "Wendell Johnson",
+ href: "https://www.facilities.uiowa.edu/named-building/wendell-johnson-speech-and-hearing-center",
+ }
+]
+
+const QuickLink = ({label, href}: QuickLink) => {
+ return (
+
+