been misspelling "acupuncture" this whole time
This commit is contained in:
parent
ba3191d770
commit
e1b61235f5
24 changed files with 149 additions and 96 deletions
|
@ -1,17 +0,0 @@
|
|||
import AccuForDocs from "./views/AccuForDocs";
|
||||
import BasicsAndHist from "./views/BasicsAndHist";
|
||||
import EarAccupuncture from "./views/EarAccupuncture";
|
||||
import ScalpAccupuncture from "./views/ScalpAccupuncture";
|
||||
|
||||
const Accupuncture = () => {
|
||||
return (
|
||||
<main>
|
||||
<BasicsAndHist></BasicsAndHist>
|
||||
<EarAccupuncture></EarAccupuncture>
|
||||
<ScalpAccupuncture></ScalpAccupuncture>
|
||||
<AccuForDocs></AccuForDocs>
|
||||
</main>
|
||||
);
|
||||
};
|
||||
|
||||
export default Accupuncture;
|
|
@ -1,9 +0,0 @@
|
|||
const AccuForDocs = () => {
|
||||
return (
|
||||
<section className="min-h-screen" id="accufordocs">
|
||||
AccuForDocs
|
||||
</section>
|
||||
);
|
||||
};
|
||||
|
||||
export default AccuForDocs;
|
|
@ -1,9 +0,0 @@
|
|||
const EarAccupuncture = () => {
|
||||
return (
|
||||
<section className="min-h-screen" id="earaccupuncture">
|
||||
EarAccupuncture
|
||||
</section>
|
||||
);
|
||||
};
|
||||
|
||||
export default EarAccupuncture;
|
|
@ -1,17 +0,0 @@
|
|||
import Link from "next/link";
|
||||
|
||||
const ScalpAccupuncture = () => {
|
||||
return (
|
||||
<section className="min-h-screen" id="scalpaccupuncture">
|
||||
<Link
|
||||
href="/content/patient-resources/scalp_accupuncture.pdf"
|
||||
target="_blank"
|
||||
className="block"
|
||||
>
|
||||
Patient Before-and-Afters [PDF]
|
||||
</Link>
|
||||
</section>
|
||||
);
|
||||
};
|
||||
|
||||
export default ScalpAccupuncture;
|
17
website/app/(pages)/acupuncture/page.tsx
Normal file
17
website/app/(pages)/acupuncture/page.tsx
Normal file
|
@ -0,0 +1,17 @@
|
|||
import AcuForDocs from "./views/AcuForDocs";
|
||||
import BasicsAndHist from "./views/BasicsAndHist";
|
||||
import EarAcupuncture from "./views/EarAcupuncture";
|
||||
import ScalpAcupuncture from "./views/ScalpAcupuncture";
|
||||
|
||||
const Acupuncture = () => {
|
||||
return (
|
||||
<main>
|
||||
<BasicsAndHist></BasicsAndHist>
|
||||
<EarAcupuncture></EarAcupuncture>
|
||||
<ScalpAcupuncture></ScalpAcupuncture>
|
||||
<AcuForDocs></AcuForDocs>
|
||||
</main>
|
||||
);
|
||||
};
|
||||
|
||||
export default Acupuncture;
|
20
website/app/(pages)/acupuncture/views/AcuForDocs.tsx
Normal file
20
website/app/(pages)/acupuncture/views/AcuForDocs.tsx
Normal file
|
@ -0,0 +1,20 @@
|
|||
import Link from "next/link";
|
||||
|
||||
const AcuForDocs = () => {
|
||||
return (
|
||||
<section className="min-h-screen" id="acufordocs">
|
||||
<div className="">
|
||||
<div className="">View Dr. Feely's resources for doctors:</div>
|
||||
<Link
|
||||
href="/content/doctor-resources/point-categories.pdf"
|
||||
target="_blank"
|
||||
className="block"
|
||||
>
|
||||
Point Categories [PDF]
|
||||
</Link>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
};
|
||||
|
||||
export default AcuForDocs;
|
9
website/app/(pages)/acupuncture/views/EarAcupuncture.tsx
Normal file
9
website/app/(pages)/acupuncture/views/EarAcupuncture.tsx
Normal file
|
@ -0,0 +1,9 @@
|
|||
const EarAcupuncture = () => {
|
||||
return (
|
||||
<section className="min-h-screen" id="earacupuncture">
|
||||
EarAcupuncture
|
||||
</section>
|
||||
);
|
||||
};
|
||||
|
||||
export default EarAcupuncture;
|
17
website/app/(pages)/acupuncture/views/ScalpAcupuncture.tsx
Normal file
17
website/app/(pages)/acupuncture/views/ScalpAcupuncture.tsx
Normal file
|
@ -0,0 +1,17 @@
|
|||
import Link from "next/link";
|
||||
|
||||
const ScalpAcupuncture = () => {
|
||||
return (
|
||||
<section className="min-h-screen" id="scalpacupuncture">
|
||||
<Link
|
||||
href="/content/patient-resources/scalp_acupuncture.pdf"
|
||||
target="_blank"
|
||||
className="block"
|
||||
>
|
||||
Patient Before-and-Afters [PDF]
|
||||
</Link>
|
||||
</section>
|
||||
);
|
||||
};
|
||||
|
||||
export default ScalpAcupuncture;
|
|
@ -1,9 +1,9 @@
|
|||
import Article from "@/components/Article";
|
||||
|
||||
const ArticleAccupuntureBasics = () => {
|
||||
const ArticleAcupuntureBasics = () => {
|
||||
return (
|
||||
<Article
|
||||
title="Accupuncture Basics"
|
||||
title="Acupuncture Basics"
|
||||
author="Richard A. Feely, D.O., FAAO, FCA, FAAMA"
|
||||
>
|
||||
<p>
|
||||
|
@ -177,4 +177,4 @@ const ArticleAccupuntureBasics = () => {
|
|||
);
|
||||
};
|
||||
|
||||
export default ArticleAccupuntureBasics;
|
||||
export default ArticleAcupuntureBasics;
|
|
@ -1,9 +1,9 @@
|
|||
import Article from "@/components/Article";
|
||||
|
||||
const ArticleAccupunctureHistory = () => {
|
||||
const ArticleAcupunctureHistory = () => {
|
||||
return (
|
||||
<Article
|
||||
title="Accupuncture History"
|
||||
title="Acupuncture History"
|
||||
author="Richard A. Feely, D.O., FAAO, FCA, FAAMA"
|
||||
>
|
||||
<p>
|
||||
|
@ -126,4 +126,4 @@ const ArticleAccupunctureHistory = () => {
|
|||
);
|
||||
};
|
||||
|
||||
export default ArticleAccupunctureHistory;
|
||||
export default ArticleAcupunctureHistory;
|
|
@ -0,0 +1,14 @@
|
|||
import Article from "@/components/Article";
|
||||
|
||||
const ArticleAcupunctureLetter = () => {
|
||||
return (
|
||||
<Article
|
||||
title=""
|
||||
author=""
|
||||
>
|
||||
|
||||
</Article>
|
||||
);
|
||||
};
|
||||
|
||||
export default ArticleAcupunctureLetter;
|
|
@ -1,9 +1,9 @@
|
|||
import Article from "@/components/Article";
|
||||
|
||||
const ArticleEarAccupunctureFaq = () => {
|
||||
const ArticleEarAcupunctureFaq = () => {
|
||||
return (
|
||||
<Article
|
||||
title="Ear Accupuncture FAQ"
|
||||
title="Ear Acupuncture FAQ"
|
||||
author="Richard A. Feely, D.O., FAAO, FCA, FAAMA"
|
||||
>
|
||||
<p>
|
||||
|
@ -202,4 +202,4 @@ const ArticleEarAccupunctureFaq = () => {
|
|||
);
|
||||
};
|
||||
|
||||
export default ArticleEarAccupunctureFaq;
|
||||
export default ArticleEarAcupunctureFaq;
|
|
@ -1,9 +1,9 @@
|
|||
import Article from "@/components/Article";
|
||||
|
||||
const ArticleEarAccupuncture = () => {
|
||||
const ArticleEarAcupuncture = () => {
|
||||
return (
|
||||
<Article
|
||||
title="Ear Accupuncture"
|
||||
title="Ear Acupuncture"
|
||||
author="Richard A. Feely, D.O., FAAO, FCA, FAAMA"
|
||||
>
|
||||
<p>
|
||||
|
@ -320,4 +320,4 @@ const ArticleEarAccupuncture = () => {
|
|||
);
|
||||
};
|
||||
|
||||
export default ArticleEarAccupuncture;
|
||||
export default ArticleEarAcupuncture;
|
|
@ -0,0 +1,14 @@
|
|||
import Article from "@/components/Article";
|
||||
|
||||
const ArticleFiveElementAcupuncture = () => {
|
||||
return (
|
||||
<Article
|
||||
title=""
|
||||
author=""
|
||||
>
|
||||
|
||||
</Article>
|
||||
);
|
||||
};
|
||||
|
||||
export default ArticleFiveElementAcupuncture;
|
|
@ -0,0 +1,14 @@
|
|||
import Article from "@/components/Article";
|
||||
|
||||
const ArticleInternationalAcupunctureBibliography = () => {
|
||||
return (
|
||||
<Article
|
||||
title=""
|
||||
author=""
|
||||
>
|
||||
|
||||
</Article>
|
||||
);
|
||||
};
|
||||
|
||||
export default ArticleInternationalAcupunctureBibliography;
|
|
@ -1,9 +1,9 @@
|
|||
import Article from "@/components/Article";
|
||||
|
||||
const ArticleScalpAccupuncture = () => {
|
||||
const ArticleScalpAcupuncture = () => {
|
||||
return (
|
||||
<Article
|
||||
title="Scalp Accupuncture"
|
||||
title="Scalp Acupuncture"
|
||||
author="Richard A. Feely, D.O., FAAO, FCA, FAAMA"
|
||||
>
|
||||
<p>
|
||||
|
@ -100,4 +100,4 @@ const ArticleScalpAccupuncture = () => {
|
|||
);
|
||||
};
|
||||
|
||||
export default ArticleScalpAccupuncture;
|
||||
export default ArticleScalpAcupuncture;
|
|
@ -1,10 +1,10 @@
|
|||
import Article from "@/components/Article";
|
||||
import Link from "next/link";
|
||||
|
||||
const ArticleYamamotoNewScalpAccupunctureFaq = () => {
|
||||
const ArticleYamamotoNewScalpAcupunctureFaq = () => {
|
||||
return (
|
||||
<Article
|
||||
title="Yamamoto New Scalp Accupunture FAQ"
|
||||
title="Yamamoto New Scalp Acupunture FAQ"
|
||||
author="Richard A. Feely, D.O., FAAO, FCA, FAAMA"
|
||||
>
|
||||
<p>
|
||||
|
@ -144,4 +144,4 @@ const ArticleYamamotoNewScalpAccupunctureFaq = () => {
|
|||
);
|
||||
};
|
||||
|
||||
export default ArticleYamamotoNewScalpAccupunctureFaq;
|
||||
export default ArticleYamamotoNewScalpAcupunctureFaq;
|
|
@ -58,27 +58,27 @@ const ArtsForPatients = () => {
|
|||
</Link>
|
||||
</div>
|
||||
<div>
|
||||
<h1>Accupuncture</h1>
|
||||
<Link href="/articles/accupuncture-basics" className="block">
|
||||
Accupuncture Basics
|
||||
<h1>Acupuncture</h1>
|
||||
<Link href="/articles/acupuncture-basics" className="block">
|
||||
Acupuncture Basics
|
||||
</Link>
|
||||
<Link href="/articles/accupuncture-history" className="block">
|
||||
Accupuncture History
|
||||
<Link href="/articles/acupuncture-history" className="block">
|
||||
Acupuncture History
|
||||
</Link>
|
||||
<Link href="/articles/ear-accupuncture" className="block">
|
||||
Ear Accupuncture
|
||||
<Link href="/articles/ear-acupuncture" className="block">
|
||||
Ear Acupuncture
|
||||
</Link>
|
||||
<Link href="/articles/ear-accupuncture-faq" className="block">
|
||||
Ear Accupuncture FAQ
|
||||
<Link href="/articles/ear-acupuncture-faq" className="block">
|
||||
Ear Acupuncture FAQ
|
||||
</Link>
|
||||
<Link href="/articles/scalp-accupuncture" className="block">
|
||||
Scalp Accupuncture
|
||||
<Link href="/articles/scalp-acupuncture" className="block">
|
||||
Scalp Acupuncture
|
||||
</Link>
|
||||
<Link
|
||||
href="/articles/yamamoto-new-scalp-accupuncture-faq"
|
||||
href="/articles/yamamoto-new-scalp-acupuncture-faq"
|
||||
className="block"
|
||||
>
|
||||
Yamamoto New Scalp Accupuncture FAQ
|
||||
Yamamoto New Scalp Acupuncture FAQ
|
||||
</Link>
|
||||
</div>
|
||||
</section>
|
||||
|
|
|
@ -32,16 +32,16 @@ const Footer = () => {
|
|||
</ul>
|
||||
</div>
|
||||
<div className="">
|
||||
<h3 className="text-xl font-bold">Accupuncture</h3>
|
||||
<h3 className="text-xl font-bold">Acupuncture</h3>
|
||||
<ul className="text-sm">
|
||||
<li>
|
||||
<a href="/accupuncture/#">a</a>
|
||||
<a href="/acupuncture/#">a</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/accupuncture/#">b</a>
|
||||
<a href="/acupuncture/#">b</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/accupuncture/#">c</a>
|
||||
<a href="/acupuncture/#">c</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
|
|
@ -14,8 +14,8 @@ const NavPages = ({ currentPageClasses }: Props) => {
|
|||
<NavLink page="/osteopathy" currentPageClasses={currentPageClasses}>
|
||||
Osteopathy
|
||||
</NavLink>
|
||||
<NavLink page="/accupuncture" currentPageClasses={currentPageClasses}>
|
||||
Accupuncture
|
||||
<NavLink page="/acupuncture" currentPageClasses={currentPageClasses}>
|
||||
Acupuncture
|
||||
</NavLink>
|
||||
<NavLink page="/articles" currentPageClasses={currentPageClasses}>
|
||||
Articles
|
||||
|
|
BIN
website/public/content/doctor-resources/point-categories.pdf
Normal file
BIN
website/public/content/doctor-resources/point-categories.pdf
Normal file
Binary file not shown.
|
@ -35,21 +35,21 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"name": "Accupuncture",
|
||||
"route": "/accupuncture",
|
||||
"name": "Acupuncture",
|
||||
"route": "/acupuncture",
|
||||
"sections": [
|
||||
{ "name": "Basics and History", "route": "/#basicsandhist" },
|
||||
{
|
||||
"name": "Ear Accupuncture",
|
||||
"id": "#earaccupuncture"
|
||||
"name": "Ear Acupuncture",
|
||||
"id": "#earacupuncture"
|
||||
},
|
||||
{
|
||||
"name": "Scalp Accupuncture",
|
||||
"id": "#scalpaccupuncture"
|
||||
"name": "Scalp Acupuncture",
|
||||
"id": "#scalpacupuncture"
|
||||
},
|
||||
{
|
||||
"name": "For Doctors",
|
||||
"id": "#accufordocs"
|
||||
"id": "#acufordocs"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue