21 lines
637 B
TypeScript
21 lines
637 B
TypeScript
import { Metadata } from "next";
|
|
import NOR from "./views/NOR";
|
|
|
|
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.`,
|
|
};
|
|
|
|
const NeuroOcularRelease = () => {
|
|
return (
|
|
<main>
|
|
<NOR></NOR>
|
|
</main>
|
|
);
|
|
};
|
|
|
|
export default NeuroOcularRelease;
|