84 lines
3.4 KiB
TypeScript
84 lines
3.4 KiB
TypeScript
import Card from "@/components/Card";
|
|
import CenterView from "@/components/CenterView";
|
|
import LearnMoreLink from "@/components/LearnMoreLink";
|
|
import { ArrowTopRightOnSquareIcon } from "@heroicons/react/24/solid";
|
|
import { default as Image } from "next-image-export-optimizer";
|
|
import scalpPoints from "@/public/content/scalp_points.png";
|
|
import ExtLearnMoreLink from "@/components/ExtLearnMoreLink";
|
|
|
|
const ScalpAcupuncture = () => {
|
|
return (
|
|
<CenterView
|
|
bg_color="bg-primary-100"
|
|
txt_color="text-primary-500"
|
|
id="scalp"
|
|
>
|
|
<div className="flex flex-col items-center justify-around md:flex-row">
|
|
<div className="basis-2/5">
|
|
<h1 className="text-6xl md:text-7xl">Scalp Acupuncture</h1>
|
|
<div className="my-10">
|
|
In 1973, Dr. Toshikatsu Yamamoto introduced Yamamoto New Scalp
|
|
Acupuncture (YNSA) in Miyazaki, Japan. Unlike traditional Chinese
|
|
acupuncture, YNSA is a diagnostic and interactive treatment system
|
|
designed to alleviate somatic and visceral pain and balance Qi.
|
|
Particularly effective for neurological disorders, YNSA has been
|
|
used to treat conditions like post-CVA, paralysis, aphasia, and
|
|
more.
|
|
</div>
|
|
<LearnMoreLink href="/articles/scalp-acupuncture">
|
|
Explore YNSA and its efficacy
|
|
</LearnMoreLink>
|
|
</div>
|
|
<div className="basis-2/5">
|
|
<Image
|
|
src={scalpPoints}
|
|
alt="Image of Dr. Toshikatsu Yamamoto"
|
|
className="mx-auto my-10 block w-11/12 rounded-lg drop-shadow-2xl"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="mt-10 flex flex-col items-start justify-around md:mt-20 md:flex-row">
|
|
<div className="basis-2/5">
|
|
<h2>Method</h2>
|
|
<div className="my-10">
|
|
YNSA employs a distinctive neck diagnostic method, developed by Dr.
|
|
Yamamoto, to determine meridian dysfunction's Yin/Yang and
|
|
left/right aspects. Immediate feedback from acupuncture needle
|
|
placement aids accurate diagnosis and treatment. Dr. Feely witnessed
|
|
Dr. Yamamoto's success firsthand during hospital rounds, where he
|
|
achieved notable improvements in stroke patients using minimal scalp
|
|
needle placements.
|
|
</div>
|
|
|
|
<div className="my-10">
|
|
This approach's efficacy has led Dr. Feely to integrate Dr.
|
|
Yamamoto's methods into his own practice, successfully addressing
|
|
chronic and injury-related symptoms. The technique's unique
|
|
diagnostic process and interactive nature contribute to its success
|
|
in treating neurological conditions and enhancing patients'
|
|
well-being.
|
|
</div>
|
|
</div>
|
|
<div className="basis-2/5">
|
|
<Card>
|
|
<h2>See the results yourself</h2>
|
|
<div className="my-3">
|
|
The file below has real patient cases and outcomes. Check it out
|
|
for yourself and see YNSA in action!
|
|
</div>
|
|
<ExtLearnMoreLink
|
|
href="/content/patient-resources/scalp_acupuncture.pdf"
|
|
target="_blank"
|
|
className="block"
|
|
>
|
|
Patient Before-and-Afters [PDF]
|
|
</ExtLearnMoreLink>
|
|
</Card>
|
|
</div>
|
|
</div>
|
|
</CenterView>
|
|
);
|
|
};
|
|
|
|
export default ScalpAcupuncture;
|