drfeely.com/website/app/(pages)/nor/views/NOR.tsx

27 lines
1,006 B
TypeScript
Raw Normal View History

2023-08-31 03:18:58 +00:00
import View from "@/components/View";
2023-08-25 19:06:28 +00:00
const NOR = () => {
return (
2023-08-31 03:18:58 +00:00
<View bg_color="bg-primary-100" txt_color="text-primary-500" id="nor">
<h1>Neuro Ocular Release</h1>
<p>
2023-09-10 01:18:46 +00:00
Neuro-ocular release (NOR) is a new osteopathic manipulative procedure
that involves the indirect method of manual techniques. It may be used
alone, or it may be used as an activating force for other indirect
methods of treatment. 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&mdash;only three seconds&mdash;than traditional methods alone.
2023-08-31 03:18:58 +00:00
</p>
<h2>Want to learn more?</h2>
<p>
Access to NOR content is only available to account holders. To request
access, contact Dr. Feely at the link below.
</p>
<p>Already have an account?</p>
</View>
2023-08-25 19:06:28 +00:00
);
};
export default NOR;