drfeely.com/website/app/(pages)/articles/views/ArtsForPatients.tsx

111 lines
3.7 KiB
TypeScript
Raw Normal View History

2023-08-31 03:18:58 +00:00
import View from "@/components/View";
import { ArrowTopRightOnSquareIcon } from "@heroicons/react/24/solid";
2023-09-05 17:34:41 +00:00
import ArtLink from "@/components/ArtLink";
2023-08-26 02:18:11 +00:00
2023-08-25 19:06:28 +00:00
const ArtsForPatients = () => {
return (
2023-08-31 03:18:58 +00:00
<View
bg_color="bg-primary-300"
txt_color="text-primary-500"
id="artsforpatients"
>
<h1>Articles</h1>
<h1>
<em>For Patients</em>
</h1>
2023-08-29 19:23:30 +00:00
<div>
2023-08-31 03:18:58 +00:00
<h2>General</h2>
2023-09-07 01:24:35 +00:00
<div className="mx-3">
<ArtLink href="/articles/ten-stages-of-grief">
The Ten Stages of Grief
</ArtLink>
<ArtLink href="/articles/coccydynia-case-report">
Coccydynia Case Report
</ArtLink>
<ArtLink href="/articles/chronic-muscle-pain">
Chronic Muscle Pain
</ArtLink>
<ArtLink href="/articles/arthritis-and-exercise">
Arthritis and Excercise
</ArtLink>
</div>
2023-08-29 19:23:30 +00:00
</div>
2023-08-26 02:18:11 +00:00
<div>
2023-08-31 03:18:58 +00:00
<h2>What is Osteopathy?</h2>
2023-09-07 01:24:35 +00:00
<div className="mx-3">
<ArtLink href="/articles/cranial-osteopathy">
Cranial Osteopathy
</ArtLink>
<ArtLink href="/articles/cranial-osteopathy-faq">
Cranial Osteopathy FAQ
</ArtLink>
<ArtLink href="/articles/intro-to-osteopathy">
Introduction to Osteopathy
</ArtLink>
<ArtLink href="/articles/osteopath-comparison-table">
Osteopath Comparison Table
</ArtLink>
<ArtLink href="/articles/osteopathic-manipulation-in-pregnancy">
Osteopathic Manipulation in Pregnancy
</ArtLink>
<ArtLink href="/articles/osteopathic-manipulative-treatment">
Osteopathic Manipulative Treatment
</ArtLink>
<ArtLink href="/articles/osteopathy-faq">Osteopathy FAQ</ArtLink>
<ArtLink href="/articles/what-is-a-do">What is a D.O.?</ArtLink>
</div>
2023-08-26 02:18:11 +00:00
</div>
<div>
2023-08-31 03:18:58 +00:00
<h2>Pediatric Osteopathy</h2>
2023-09-07 01:24:35 +00:00
<div className="mx-3">
<ArtLink href="/articles/pediatric-digestive-problems">
Digestive Problems
</ArtLink>
<ArtLink href="/articles/pediatric-down-syndrome">
Down Syndrome
</ArtLink>
<ArtLink href="/articles/pediatric-orthopedic-problems">
Orthopedic Problems
</ArtLink>
<ArtLink href="/articles/pediatric-respiratory-health">
Respiratory Health
</ArtLink>
<ArtLink href="/articles/pediatric-treatment-for-newborns">
Treatment for the Newborn
</ArtLink>
</div>
2023-08-26 02:18:11 +00:00
</div>
2023-08-28 22:06:06 +00:00
<div>
2023-08-31 03:18:58 +00:00
<h2>Acupuncture</h2>
2023-09-07 01:24:35 +00:00
<div className="mx-3">
<ArtLink href="/articles/acupuncture-basics">
Acupuncture Basics
</ArtLink>
<ArtLink href="/articles/acupuncture-history">
Acupuncture History
</ArtLink>
<ArtLink href="/articles/ear-acupuncture">Ear Acupuncture</ArtLink>
<ArtLink href="/articles/ear-acupuncture-faq">
Ear Acupuncture FAQ
</ArtLink>
<ArtLink href="/articles/scalp-acupuncture">
Scalp Acupuncture
</ArtLink>
<ArtLink href="/articles/yamamoto-new-scalp-acupuncture-faq">
Yamamoto New Scalp Acupuncture FAQ{" "}
</ArtLink>
<ArtLink
href="/content/patient-resources/scalp_acupuncture.pdf"
target="_blank"
>
Patient Before-and-Afters [PDF]{" "}
<ArrowTopRightOnSquareIcon className="inline w-[16px] align-[-2px]" />
</ArtLink>
</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 ArtsForPatients;