diff --git a/website/app/(pages)/acupuncture/views/ScalpAcupuncture.tsx b/website/app/(pages)/acupuncture/views/ScalpAcupuncture.tsx index ef417db..5ebd723 100644 --- a/website/app/(pages)/acupuncture/views/ScalpAcupuncture.tsx +++ b/website/app/(pages)/acupuncture/views/ScalpAcupuncture.tsx @@ -4,6 +4,7 @@ import LearnMoreLink from "@/components/LearnMoreLink"; import { ArrowTopRightOnSquareIcon } from "@heroicons/react/24/solid"; import Image from "next/image"; import scalpPoints from "@/public/content/scalp_points.png"; +import ExtLearnMoreLink from "@/components/ExtLearnMoreLink"; const ScalpAcupuncture = () => { return ( @@ -66,14 +67,13 @@ const ScalpAcupuncture = () => { The file below has real patient cases and outcomes. Check it out for yourself and see YNSA in action! - - Patient Before-and-Afters [PDF]{" "} - - + Patient Before-and-Afters [PDF] + diff --git a/website/app/(pages)/nor/views/NOR.tsx b/website/app/(pages)/nor/views/NOR.tsx index 75bd8bc..68758c4 100644 --- a/website/app/(pages)/nor/views/NOR.tsx +++ b/website/app/(pages)/nor/views/NOR.tsx @@ -1,25 +1,47 @@ -import View from "@/components/View"; +import CenterView from "@/components/CenterView"; +import ExtLearnMoreLink from "@/components/ExtLearnMoreLink"; +import NORBrain from "@/public/content/NOR_brain.png"; +import Image from "next/image"; const NOR = () => { return ( - -

Neuro Ocular Release

-

- 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—only three seconds—than traditional methods alone. -

-

Want to learn more?

-

- Access to NOR content is only available to account holders. To request - access, contact Dr. Feely at the link below. -

-

Already have an account?

-
+ +
+
+

Neuro Ocular Release

+

+ 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—only three seconds—than + traditional methods alone. +

+ + Read Dr. Feely's Paper on NOR [PDF] + +

Want to learn more?

+

+ Access to NOR content is only available to account holders. To + request access, contact Dr. Feely at the link below. +

+

Already have an account?

+
+
+ NOR Diagram +
+
+
); }; diff --git a/website/app/layout.tsx b/website/app/layout.tsx index 44d824d..0d7a548 100644 --- a/website/app/layout.tsx +++ b/website/app/layout.tsx @@ -1,6 +1,7 @@ import Navbar from "@/components/Navbar"; import "./globals.css"; import Footer from "@/components/Footer"; +import Contact from "@/components/Contact"; export default function RootLayout({ children, @@ -12,6 +13,7 @@ export default function RootLayout({ {children} + diff --git a/website/components/ArtLink.tsx b/website/components/ArtLink.tsx index 0bb3cce..da8ce2c 100644 --- a/website/components/ArtLink.tsx +++ b/website/components/ArtLink.tsx @@ -2,7 +2,7 @@ import Link from "next/link"; const ArtLink = (props: any) => { return ( -
+
{ + return ( + +
+
+
+ Stately unicorn from Dr. Feely's coat of arms +
+
+

Contact Dr. Feely

+
+ at{" "} + + rafeely@drfeely.com + +
+
+
+ Stately lion from Dr. Feely's coat of arms +
+
+
+
+ ); +}; + +export default Contact; diff --git a/website/components/ExtLearnMoreLink.tsx b/website/components/ExtLearnMoreLink.tsx new file mode 100644 index 0000000..b8f69f9 --- /dev/null +++ b/website/components/ExtLearnMoreLink.tsx @@ -0,0 +1,28 @@ +import { ReactNode } from "react"; +import { ArrowTopRightOnSquareIcon } from "@heroicons/react/24/solid"; +import Link from "next/link"; + +interface Props { + className?: string; + href: string; + target?: string; + children?: ReactNode; +} + +const ExtLearnMoreLink = ({ className, href, target, children }: Props) => { + return ( + + {children}{" "} + + + ); +}; + +export default ExtLearnMoreLink; diff --git a/website/components/Footer.tsx b/website/components/Footer.tsx index 9cd8b49..21e1252 100644 --- a/website/components/Footer.tsx +++ b/website/components/Footer.tsx @@ -1,6 +1,6 @@ const Footer = () => { return ( -