drfeely.com/website/app/(pages)/osteopathy/views/OsteoForDocs.tsx

30 lines
816 B
TypeScript
Raw Normal View History

2023-08-28 22:06:06 +00:00
import Link from "next/link";
2023-08-25 19:06:28 +00:00
const OsteoForDocs = () => {
return (
<section className="min-h-screen" id="osteofordocs">
2023-08-28 22:06:06 +00:00
<div className="">
<div className="">View Dr. Feely's resources for doctors:</div>
<Link href="/articles/feelys-osteopathic-dictionary" className="block">
Feely's Abridged Osteopathic Dictionary
</Link>
<Link href="/articles/omt-codes" className="block">
OMT Codes
</Link>
<Link
href="/content/doctor-resources/drg_omt_chart.pdf"
target="_blank"
className="block"
>
DRG/OMT Chart [PDF]
</Link>
</div>
<div className="">
Or, learn more by reading his articles for doctors:
</div>
2023-08-25 19:06:28 +00:00
</section>
);
};
export default OsteoForDocs;