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

53 lines
1.6 KiB
TypeScript
Raw Normal View History

2023-08-26 02:18:11 +00:00
import Link from "next/link";
2023-08-25 19:06:28 +00:00
const ArtsForPatients = () => {
return (
2023-08-26 02:18:11 +00:00
<section className="min-h-screen p-36" id="artsforpatients">
<div>
<h1>Osteopathy Basics</h1>
<Link href="/articles/pediatric-digestive-problems" className="block">
Digestive Problems
</Link>
<Link href="/articles/pediatric-down-syndrome" className="block">
Down Syndrome
</Link>
<Link href="/articles/pediatric-orthopedic-problems" className="block">
Orthopedic Problems
</Link>
<Link href="/articles/pediatric-respiratory-health" className="block">
Respiratory Health
</Link>
<Link
href="/articles/pediatric-treatment-for-newborns"
className="block"
>
Treatment for the Newborn
</Link>
</div>
<div>
<h1>Pediatric Osteopathy</h1>
<Link href="/articles/pediatric-digestive-problems" className="block">
Digestive Problems
</Link>
<Link href="/articles/pediatric-down-syndrome" className="block">
Down Syndrome
</Link>
<Link href="/articles/pediatric-orthopedic-problems" className="block">
Orthopedic Problems
</Link>
<Link href="/articles/pediatric-respiratory-health" className="block">
Respiratory Health
</Link>
<Link
href="/articles/pediatric-treatment-for-newborns"
className="block"
>
Treatment for the Newborn
</Link>
</div>
2023-08-25 19:06:28 +00:00
</section>
);
};
export default ArtsForPatients;