2023-08-31 03:18:58 +00:00
|
|
|
import View from "@/components/View";
|
2023-09-05 17:34:41 +00:00
|
|
|
import drStill2 from "@/public/content/dr_still_2.jpg";
|
2023-10-20 19:25:25 +00:00
|
|
|
import { default as Image } from "next-image-export-optimizer";
|
2023-09-05 17:34:41 +00:00
|
|
|
import ArtLink from "@/components/ArtLink";
|
|
|
|
import { ArrowTopRightOnSquareIcon } from "@heroicons/react/24/solid";
|
|
|
|
import LearnMoreLinkLight from "@/components/LearnMoreLinkLight";
|
2023-08-28 22:06:06 +00:00
|
|
|
|
2023-08-25 19:06:28 +00:00
|
|
|
const OsteoForDocs = () => {
|
|
|
|
return (
|
2023-08-31 03:18:58 +00:00
|
|
|
<View
|
|
|
|
bg_color="bg-primary-500"
|
|
|
|
txt_color="text-primary-100"
|
2023-09-10 06:03:26 +00:00
|
|
|
id="fordocs"
|
2023-09-05 17:34:41 +00:00
|
|
|
className="!min-h-0"
|
2023-08-31 03:18:58 +00:00
|
|
|
>
|
2023-09-05 17:34:41 +00:00
|
|
|
<div className="flex h-full flex-col items-center justify-around md:flex-row">
|
|
|
|
<div className="basis-2/5 md:text-right">
|
|
|
|
<h1>For Doctors:</h1>
|
|
|
|
<div className="mb-10">
|
|
|
|
<h2>View Dr. Feely's osteopathy resources</h2>
|
|
|
|
<ArtLink
|
|
|
|
href="/articles/feelys-osteopathic-dictionary"
|
|
|
|
className="hover:drop-shadow-light"
|
|
|
|
>
|
|
|
|
Feely's Abridged Osteopathic Dictionary
|
|
|
|
</ArtLink>
|
|
|
|
<ArtLink
|
|
|
|
href="/articles/omt-codes"
|
|
|
|
className="hover:drop-shadow-light"
|
|
|
|
>
|
|
|
|
OMT Codes
|
|
|
|
</ArtLink>
|
|
|
|
<ArtLink
|
|
|
|
href="/content/doctor-resources/drg_omt_chart.pdf"
|
|
|
|
target="_blank"
|
|
|
|
className="hover:drop-shadow-light"
|
|
|
|
>
|
|
|
|
DRG/OMT Chart [PDF]{" "}
|
|
|
|
<ArrowTopRightOnSquareIcon className="inline w-[16px] align-[-2px]" />
|
|
|
|
</ArtLink>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<h2>Or, learn more by reading his articles</h2>
|
|
|
|
<LearnMoreLinkLight href="/articles#artsfordocs">
|
|
|
|
View all articles for doctors
|
|
|
|
</LearnMoreLinkLight>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="basis-2/5">
|
|
|
|
<Image
|
|
|
|
src={drStill2}
|
|
|
|
alt="Image of Dr. A.T. Still"
|
|
|
|
className="mx-auto my-10 block w-11/12 rounded-lg drop-shadow-2xl"
|
|
|
|
/>
|
|
|
|
</div>
|
2023-08-28 22:06:06 +00:00
|
|
|
</div>
|
2023-08-31 03:18:58 +00:00
|
|
|
</View>
|
2023-08-25 19:06:28 +00:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default OsteoForDocs;
|