diff --git a/public/mail-icon-white.svg b/public/mail-icon-white.svg
new file mode 100644
index 0000000..d94cc99
--- /dev/null
+++ b/public/mail-icon-white.svg
@@ -0,0 +1,125 @@
+
+
+
+
diff --git a/public/phone-call-icon.svg b/public/phone-call-icon.svg
new file mode 100644
index 0000000..bc3846b
--- /dev/null
+++ b/public/phone-call-icon.svg
@@ -0,0 +1,182 @@
+
+
+
diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx
index a03e031..c083c3e 100644
--- a/src/components/Footer.tsx
+++ b/src/components/Footer.tsx
@@ -1,6 +1,67 @@
import { type NextPage } from "next/types";
import Image from 'next/image';
+interface QuickLink {
+ label: string,
+ href: string,
+}
+
+interface ContactInfo {
+ name: string,
+ title: string,
+ email?: string,
+ phone?: string,
+}
+
+const contacts: ContactInfo[] = [
+ {
+ name: "Olivia Adamson",
+ title: "Audiology Graduate Student Clinician",
+ email: "olivia-adamson@uiowa.edu",
+ },
+ {
+ name: "Eun Kyung (Julie) Jeon",
+ title: "Clinical Assistant Professor",
+ email: "eunkyung-jeon@uiowa.edu",
+ phone: "319-467-1476"
+ }
+]
+
+const ContactInfo = ({name, title, email, phone}: ContactInfo) => {
+ return (
+ {title}{name}
+ {email}
+ {phone}
+
Iowa City, IA 52242