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

22 lines
637 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: "Neuro Ocular Release | Dr. Feely",
description: `Neuro-ocular release (NOR) is a new osteopathic method that is
designed to be used alongside other techniques. By utilizing the visual
system, NOR accesses pathways that reset the central and peripheral nervous
systems. In doing so, NOR more effectively alleviates somatic disfunction in
less time than traditional methods alone.`,
2023-08-30 22:56:17 +00:00
};
2023-08-25 19:06:28 +00:00
const NeuroOcularRelease = () => {
return (
<main>
<NOR></NOR>
</main>
);
};
export default NeuroOcularRelease;