drfeely.com/website/app/(pages)/acupuncture/views/ScalpAcupuncture.tsx

51 lines
1.9 KiB
TypeScript
Raw Normal View History

2023-08-31 03:18:58 +00:00
import View from "@/components/View";
import { ArrowTopRightOnSquareIcon } from "@heroicons/react/24/solid";
import Link from "next/link";
const ScalpAcupuncture = () => {
return (
2023-08-31 03:18:58 +00:00
<View
bg_color="bg-primary-100"
txt_color="text-primary-500"
id="scalpacupuncture"
>
2023-08-29 19:23:30 +00:00
<p>
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.
</p>
<p>
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. I witnessed Dr. Yamamoto's success
firsthand during hospital rounds, where he achieved notable improvements
in stroke patients using minimal scalp needle placements.
</p>
<p>
2023-08-31 03:18:58 +00:00
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.
2023-08-29 19:23:30 +00:00
</p>
<Link
href="/content/patient-resources/scalp_acupuncture.pdf"
target="_blank"
className="block"
>
Patient Before-and-Afters [PDF]{" "}
<ArrowTopRightOnSquareIcon className="inline w-[16px] align-[-2px]" />
</Link>
2023-08-31 03:18:58 +00:00
</View>
);
};
export default ScalpAcupuncture;