drfeely.com/app/(pages)/osteopathy/page.tsx
2023-10-20 14:25:25 -05:00

26 lines
791 B
TypeScript

import OsteoForDocs from "./views/OsteoForDocs";
import PediatricCare from "./views/PediatricCare";
import OsteoBasics from "./views/OsteoBasics";
import { Metadata } from "next";
export const metadata: Metadata = {
title: "Osteopathy | Dr. Feely",
description: `Osteopathic Medicine finds its roots in the pioneering work of
Dr. Andrew Taylor Still, who challenged the medical practices of his time.
In 1874, Dr. Still developed a groundbreaking philosophy that viewed the body
as an interconnected unit, where all its systems work harmoniously to maintain
health.`,
};
const Osteopathy = () => {
return (
<main>
<OsteoBasics></OsteoBasics>
<PediatricCare></PediatricCare>
<OsteoForDocs></OsteoForDocs>
</main>
);
};
export default Osteopathy;