drfeely.com/website/app/(pages)/nor/page.tsx

21 lines
557 B
TypeScript
Raw Normal View History

2023-08-30 22:56:17 +00:00
import { Metadata } from "next";
2023-08-25 19:06:28 +00:00
import NOR from "./views/NOR";
2023-08-30 22:56:17 +00:00
export const metadata: Metadata = {
title: "Dr. Feely | NOR",
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-08-25 19:06:28 +00:00
const NeuroOcularRelease = () => {
return (
<main>
<NOR></NOR>
</main>
);
};
export default NeuroOcularRelease;