"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"; import Image from "next/image"; import whoLogo from "@/public/content/who.png"; 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 (

Professional Experience

TCM tests logo Feely center logo OMM tests logo World health organization logo {showAll ? ( <> Tivity health logo Womack logo logo ) : ( <> )}

TCMtests, LLC

2003-Present
Founder and President
Created{" "} tcmtests.com , the leading online board certification test prep site for Acupuncturist and Oriental Medical Doctors

Feely Center for Optimal Health

2000-2023
President
A private osteopathic integrative medical practice with locations in Chicago and Olympia Fields, IL

OMM, LLC

2010-2023
President
Created{" "} ommtests.com , the most complete web-based OMM/OMT test prep program.

World Health Organization

2016-2017
Temporary Consultant in Integrative Medicine
Led the International Workshop on Quality of Traditional and Complementary Medicine Services in Practice. Worked in Macao and China.
{showAll ? ( <>

Tivity Health

2019-Present
MD/DO Peer Reviewer
Peer Reviewer in Utilization Review Management at a large provider of health improvement at fitness solutions, based in Franlin, TN

Womack Investment Advisers

2009-Present
Registered Investment Adviser
Investment adviser at a prominent finacial planning and wealth management firm in Edmond, Oklahoma.

American WholeHealth

1999-2000
National Director of Quality Management
) : ( <> )}
{showAll ? ( ) : ( )}
); }; export default ProExp;