import ImageCard from "@/components/ImageCard"; import atStillU from "@/public/content/at_still_university.jpg"; import davenportHospital from "@/public/content/davenport_hospital.png"; import trumanState from "@/public/content/truman-state.jpeg"; import Image from "next/image"; interface Props { className?: string; } const Edu = ({ className }: Props) => { const eduImgDims = "h-full w-full object-cover"; const eduImgWrapperStyle = "h-32 md:h-56 overflow-hidden"; const eduTextWrapperStyle = "m-10 mt-7"; return (

Schooling

Truman state university

Truman State University

B.S. - Zoology/Chemistry
A.T. Still university

A.T. Still University

Kirksville College of Osteopathic Medicine
Doctor of Osteopathy
Davenport osteopathic hospital

Davenport Osteopathic Hospital

Rotating Internship Training Program
); }; export default Edu;