diff --git a/src/pages/about.tsx b/src/pages/about.tsx index 17c5ec8..bd08b22 100644 --- a/src/pages/about.tsx +++ b/src/pages/about.tsx @@ -111,6 +111,8 @@ const About: NextPage = () => { + + {/** Biographies (both small & large screens) */}
{biographies.map((biography, index) => { return ; diff --git a/src/pages/contact.tsx b/src/pages/contact.tsx index daeecc7..808b371 100644 --- a/src/pages/contact.tsx +++ b/src/pages/contact.tsx @@ -1,22 +1,26 @@ import { type NextPage } from "next/types"; import Footer from "~/components/Footer"; +import Image from "next/image"; import Header from "~/components/Header"; import { TopLabel } from "~/components/Labels"; interface ContactDetails { - label: string; + name: string; + title: string; role: string; email: string; } const contacts: ContactDetails[] = [ { - label: "Olivia Adamson, B.A", + name: "Olivia Adamson", + title: "B.A", role: "Graduate Student Clinician - Audiology", email: "olivia-adamson@uiowa.edu", }, { - label: "Eun Kyung (Julie) Jeon, Ph.D. Au.D., CCC-A", + name: "Eun Kyung (Julie) Jeon", + title: "Ph.D. Au.D., CCC-A", role: "Clinical Assistant Professor in Audiology", email: "eunkyung-jeon@uiowa.edu", }, @@ -26,8 +30,21 @@ const ContactForm = ({ details }: { details: ContactDetails }) => { return (
-

{details.label}

+

{details.name}

+

{details.title}

{details.role}

+ + email + + {details.email} + +
); @@ -39,11 +56,11 @@ const Contact: NextPage = () => {
{/** Contact section */} -
+

Contact Information

-
+
{contacts.map((contactDetails, index) => { return ; })}