2023-08-30 22:56:17 +00:00
|
|
|
import { Metadata } from "next";
|
2023-08-26 02:18:11 +00:00
|
|
|
import AcademicWork from "./views/AcademicWork";
|
|
|
|
import CertsAndFellows from "./views/CertsAndFellows";
|
|
|
|
import EduAndProExp from "./views/EduAndProExp";
|
2023-07-27 04:40:20 +00:00
|
|
|
import Introduction from "./views/Introduction";
|
2023-07-25 03:14:18 +00:00
|
|
|
|
2023-08-30 22:56:17 +00:00
|
|
|
export const metadata: Metadata = {
|
2023-09-04 22:51:13 +00:00
|
|
|
title: "Dr. Richard A. Feely",
|
2023-08-30 22:56:17 +00:00
|
|
|
description: `Dr. Feely is a highly accomplished physician with over 25 years
|
|
|
|
of experience in osteopathic medicine, acupuncture, herbal medicine, and
|
|
|
|
family practice. He specializes in the treatment of neuromusculoskeletal
|
|
|
|
pain, especially back pain, neck pain and headaches.`,
|
|
|
|
};
|
|
|
|
|
2023-07-23 22:26:35 +00:00
|
|
|
const Home = () => {
|
2023-07-25 03:14:18 +00:00
|
|
|
return (
|
|
|
|
<main>
|
2023-07-27 04:40:20 +00:00
|
|
|
<Introduction></Introduction>
|
2023-08-26 02:18:11 +00:00
|
|
|
<EduAndProExp></EduAndProExp>
|
|
|
|
<CertsAndFellows></CertsAndFellows>
|
|
|
|
<AcademicWork></AcademicWork>
|
2023-07-25 03:14:18 +00:00
|
|
|
</main>
|
|
|
|
);
|
2023-07-23 22:26:35 +00:00
|
|
|
};
|
2023-07-23 14:44:58 +00:00
|
|
|
|
2023-07-23 22:26:35 +00:00
|
|
|
export default Home;
|