diff --git a/public/profiles/jeon-eunkyung.jpg b/public/profiles/jeon-eunkyung.jpg new file mode 100644 index 0000000..76234e9 Binary files /dev/null and b/public/profiles/jeon-eunkyung.jpg differ diff --git a/public/profiles/olivia-adamson.jpeg b/public/profiles/olivia-adamson.jpeg new file mode 100644 index 0000000..e2248e0 Binary files /dev/null and b/public/profiles/olivia-adamson.jpeg differ diff --git a/src/pages/about.tsx b/src/pages/about.tsx index dfb89c8..2c48ca3 100644 --- a/src/pages/about.tsx +++ b/src/pages/about.tsx @@ -1,7 +1,46 @@ -import { ArrowUpRightIcon } from "@heroicons/react/24/outline"; -import Link from "next/link"; import { type NextPage } from "next/types"; +type Position = "left" | "right"; +interface Biography { + name: string; + title: string; + body: string; + img: string; + position: Position; +} + +const Biopgraphy = ({name, title, body, img, position}: Biography) => { + return ( +
+
+
+ {name}, {title}, {body} +
+
+ ); +}; + +const biographies: Biography[] = [ + { + name: "Olivia Adamson", + title: "B.A", + body: "is a dedicated audiology graduate student at the University of Iowa, originally from a small town in southeast Minnesota. She earned her Bachelor of Arts in Communication Sciences and Disorders from Augustana University in Sioux Falls, SD, in 2020. Olivia Adamson is currently immersed in her fourth-year externship at Gundersen Health System in LaCrosse, WI, where she works with patients of all ages, performs comprehensive diagnostic assessments, provides vestibular assessments, and specializes in hearing aids and cochlear implants. With a passion for aural rehabilitation, particularly for older adults, Olivia is dedicated to enhancing the quality of life for individuals with hearing loss. She aspires to empower patients to take control of their hearing journey through this resource. Upon completing her externship, Olivia will graduate with her Au.D. in May 2024.", + img: "/profiles/olivia-adamson.jpeg", + position: "right", + }, + { + name: "Dr. Eun Kyung (Julie) Jeon", + title: "Au.D., Ph.D.", + body: "is a Clinical Assistant Professor in Communication Sciences and Disorders at the University of Iowa. She earned both her Au.D. and Ph.D. degrees from the University of Iowa in 2008 and 2016, respectively. Dr. Jeon's research and clinical interests focus on aural (re)habilitation for children and adults with hearing aids and cochlear implants. She has served as a reviewer for various journals, including Ear and Hearing and Cochlear Implant International. Dr. Jeon is an active member of several professional organizations, such as the American Academy of Audiology (AAA), the American Cochlear Implant Alliance (ACIA), the American Speech-Language-Hearing Association (ASHA), the Iowa Speech-Language-Hearing Association (ISHA), and the Asia Pacific Society of Speech-Language-Hearing (APSSLH). Currently, she has been entrusted with various leadership responsibilities, including educational committee officer for the APSSLH, Member-at-Large for the Iowa Speech Language Hearing Foundation, Iowa EHDI Advisory Board representative for the ISHA, and program committee member for the CI2023 conference.", + img: "/profiles/jeon-eunkyung.jpg", + position: "left", + } +] + const About: NextPage = () => { return ( @@ -15,7 +54,21 @@ const About: NextPage = () => { backdropFilter: `blur(5px) contrast(50%)`, }} className="h-full w-full grid place-items-center">
-

About Us

+

About Us

+
+ + +
+
+
+

Meet the Team

+
+
+ {biographies.map((biography, index) => { + return ( + + ); + })}
@@ -23,4 +76,4 @@ const About: NextPage = () => { ); }; -export default About \ No newline at end of file +export default About