"use client"; import Button from "@/components/Button"; import Card from "@/components/Card"; import { ArrowDownIcon, ArrowUpIcon } from "@heroicons/react/24/solid"; import { useState } from "react"; import whoLogo from "@/public/content/who.png"; import midwesternLogo from "@/public/content/midwestern_college.png"; import tuoroLogo from "@/public/content/tuoro_university.png"; import atStillLogo from "@/public/content/at_still.svg"; import westernULogo from "@/public/content/western_university.png"; import cranialLogo from "@/public/content/osteopathic_cranial_academy.png"; import aaoLogo from "@/public/content/aao.webp"; import Image from "next/image"; interface Props { className?: string; } const AcademicAppts = ({ className }: Props) => { const cardYearsStyle = "italic my-2"; const cardPositionStyle = "font-bold my-2"; const logoStyle = "h-32 w-auto"; const [showAll, setShowAll] = useState(false); return (

Academic Appointments

World Health Organization

2016-2017
Temporary Consultant in Integrative Medicine
Workshop on Quality of Traditional and Complementary Medicine Services. Expert on Practice in southeast Asia region, incl. Macao and China.

Midwestern University
Chicago College of Osteopathic Medicine

1998-Present
Clinical Associate Professor of Osteopathic Manipulative Medicine

Tuoro University
College of Osteopathic Medicine

2018-2020
Adjunct Associate Professor
{showAll ? ( <>

A.T. Still University

2010-2018
Adjunct Associate Professor

Western University
College Osteopathic Medicine

2007-2017
Adjunct Associate Professor of Osteopathic Manipulative Acupuncture

The Osteopathic Cranial Academy

1992-1994
33rd President

American Academy of Osteopathy

2010-2011
63rd President
) : ( <> )}
World health organization logo Midwestern university logo Tuoro university logo {showAll ? ( <> AT Still Univeristy logo Western university logo Osteopathic Cranial academy logo American Academy of osteopathy logo ) : ( <> )}
{showAll ? ( ) : ( )}
); }; export default AcademicAppts;