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

25 lines
839 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>
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.
</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;