drfeely.com/app/views/components/ProExp.tsx

198 lines
6.8 KiB
TypeScript
Raw Permalink Normal View History

"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 feelyCenterLogo from "@/public/content/feelycenter.png";
import ommTestsLogo from "@/public/content/omm_logo.png";
import tcmmTestsLogo from "@/public/content/tcm_tests.png";
import womack from "@/public/content/womack.png";
import tivity from "@/public/content/tivity.png";
2024-08-02 19:42:31 +00:00
import marianUniversity from "@/public/content/marian_university.png";
import feelyLogo from "@/public/content/logo.png";
2023-10-20 19:25:25 +00:00
import { default as Image } from "next-image-export-optimizer";
2023-09-10 01:18:46 +00:00
import whoLogo from "@/public/content/who.png";
2024-08-02 19:42:31 +00:00
import ArtLink from "@/components/ArtLink";
interface Props {
className?: string;
}
const ProExp = ({ 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 (
<div className={className}>
<h2>Professional Experience</h2>
<div className="flex flex-col-reverse md:flex-row">
<div className="hidden flex-col items-center justify-center gap-32 md:flex md:basis-1/2">
2024-08-02 19:42:31 +00:00
<Image
className={logoStyle + " !h-24"}
src={marianUniversity}
alt="Marian university logo"
/>
2023-09-10 01:18:46 +00:00
<Image
className={logoStyle}
src={tcmmTestsLogo}
alt="TCM tests logo"
/>
2024-08-02 19:42:31 +00:00
<Image className={logoStyle} src={feelyLogo} alt="Feely LTD logo" />
<Image
className={logoStyle}
src={feelyCenterLogo}
alt="Feely center logo"
/>
<Image
className={logoStyle + " !h-20"}
src={ommTestsLogo}
alt="OMM tests logo"
/>
<Image
className={logoStyle}
2023-09-10 01:18:46 +00:00
src={whoLogo}
alt="World health organization logo"
/>
{showAll ? (
<>
<Image
className={logoStyle + " !h-24"}
src={tivity}
alt="Tivity health logo"
/>
<Image
className={logoStyle + " !h-48"}
src={womack}
alt="Womack logo logo"
/>
</>
) : (
<></>
)}
</div>
<div className="flex flex-col gap-4 md:basis-1/2">
2024-08-02 19:42:31 +00:00
<Card>
<h2>
Marian University
<br />
College of Osteopathic Medicine
</h2>
<div className={cardYearsStyle}>2024-Present</div>
<div className={cardPositionStyle}>
Associate Clinical Professor of Osteopathic Manipulative Medicine
</div>
<div>
Professor at a leading osteopathic medical school in Indianapolis.
</div>
</Card>
2023-09-10 01:18:46 +00:00
<Card>
<h2>TCMtests, LLC</h2>
<div className={cardYearsStyle}>2003-Present</div>
<div className={cardPositionStyle}>Founder and President</div>
<div>
Created{" "}
<a href="https://www.tcmtests.com" className="underline">
tcmtests.com
</a>
, the leading online board certification test prep site for
Acupuncturist and Oriental Medical Doctors
</div>
</Card>
2024-08-02 19:42:31 +00:00
<Card>
<h2>Private Practice (Feely, LTD.)</h2>
<div className={cardYearsStyle}>2024-Present</div>
<div>
Dr. Feely's private practice in Carmel, Indiana.{" "}
<ArtLink href="/office">Click here for more information.</ArtLink>
</div>
</Card>
<Card>
<h2>Feely Center for Optimal Health</h2>
2023-09-10 01:18:46 +00:00
<div className={cardYearsStyle}>2000-2023</div>
<div className={cardPositionStyle}>President</div>
<div>
A private osteopathic integrative medical practice with locations
in Chicago and Olympia Fields, IL
</div>
</Card>
<Card>
<h2>OMM, LLC</h2>
2023-09-10 01:18:46 +00:00
<div className={cardYearsStyle}>2010-2023</div>
<div className={cardPositionStyle}>President</div>
<div>
Created{" "}
<a href="https://www.ommtests.com" className="underline">
ommtests.com
</a>
, the most complete web-based OMM/OMT test prep program.
</div>
</Card>
<Card>
2023-09-10 01:18:46 +00:00
<h2>World Health Organization</h2>
<div className={cardYearsStyle}>2016-2017</div>
<div className={cardPositionStyle}>
Temporary Consultant in Integrative Medicine
</div>
<div>
2023-09-10 01:18:46 +00:00
Led the International Workshop on Quality of Traditional and
Complementary Medicine Services in Practice. Worked in Macao and
China.
</div>
</Card>
{showAll ? (
<>
<Card>
<h2>Tivity Health</h2>
<div className={cardYearsStyle}>2019-Present</div>
<div className={cardPositionStyle}>MD/DO Peer Reviewer</div>
<div>
Peer Reviewer in Utilization Review Management at a large
provider of health improvement at fitness solutions, based in
Franlin, TN
</div>
</Card>
<Card>
<h2>Womack Investment Advisers</h2>
<div className={cardYearsStyle}>2009-Present</div>
<div className={cardPositionStyle}>
Registered Investment Adviser
</div>
<div>
Investment adviser at a prominent finacial planning and wealth
management firm in Edmond, Oklahoma.
</div>
</Card>
<Card>
<h2>American WholeHealth</h2>
<div className={cardYearsStyle}>1999-2000</div>
<div className={cardPositionStyle}>
National Director of Quality Management
</div>
<div></div>
</Card>
</>
) : (
<></>
)}
</div>
</div>
<div className="mt-12 flex justify-center">
{showAll ? (
<Button onClick={() => setShowAll((e) => !e)}>
Show Less <ArrowUpIcon className="inline w-[24px]" />
</Button>
) : (
<Button onClick={() => setShowAll((e) => !e)}>
Show More <ArrowDownIcon className="inline w-[24px]" />
</Button>
)}
</div>
</div>
);
};
export default ProExp;