drfeely.com/app/(pages)/osteopathy/page.tsx

26 lines
791 B
TypeScript
Raw Normal View History

2023-08-25 19:06:28 +00:00
import OsteoForDocs from "./views/OsteoForDocs";
import PediatricCare from "./views/PediatricCare";
2023-08-30 22:56:17 +00:00
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.`,
2023-08-30 22:56:17 +00:00
};
2023-08-25 19:06:28 +00:00
const Osteopathy = () => {
return (
<main>
2023-08-30 22:56:17 +00:00
<OsteoBasics></OsteoBasics>
2023-08-25 19:06:28 +00:00
<PediatricCare></PediatricCare>
<OsteoForDocs></OsteoForDocs>
</main>
);
};
export default Osteopathy;