diff --git a/website/app/(pages)/accupuncture/page.tsx b/website/app/(pages)/accupuncture/page.tsx deleted file mode 100644 index 7ea9cab..0000000 --- a/website/app/(pages)/accupuncture/page.tsx +++ /dev/null @@ -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 ( -
- - - - -
- ); -}; - -export default Accupuncture; diff --git a/website/app/(pages)/accupuncture/views/AccuForDocs.tsx b/website/app/(pages)/accupuncture/views/AccuForDocs.tsx deleted file mode 100644 index 936b840..0000000 --- a/website/app/(pages)/accupuncture/views/AccuForDocs.tsx +++ /dev/null @@ -1,9 +0,0 @@ -const AccuForDocs = () => { - return ( -
- AccuForDocs -
- ); -}; - -export default AccuForDocs; diff --git a/website/app/(pages)/accupuncture/views/EarAccupuncture.tsx b/website/app/(pages)/accupuncture/views/EarAccupuncture.tsx deleted file mode 100644 index e3c42e1..0000000 --- a/website/app/(pages)/accupuncture/views/EarAccupuncture.tsx +++ /dev/null @@ -1,9 +0,0 @@ -const EarAccupuncture = () => { - return ( -
- EarAccupuncture -
- ); -}; - -export default EarAccupuncture; diff --git a/website/app/(pages)/accupuncture/views/ScalpAccupuncture.tsx b/website/app/(pages)/accupuncture/views/ScalpAccupuncture.tsx deleted file mode 100644 index 7f0e01b..0000000 --- a/website/app/(pages)/accupuncture/views/ScalpAccupuncture.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import Link from "next/link"; - -const ScalpAccupuncture = () => { - return ( -
- - Patient Before-and-Afters [PDF] - -
- ); -}; - -export default ScalpAccupuncture; diff --git a/website/app/(pages)/acupuncture/page.tsx b/website/app/(pages)/acupuncture/page.tsx new file mode 100644 index 0000000..b94f36e --- /dev/null +++ b/website/app/(pages)/acupuncture/page.tsx @@ -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 ( +
+ + + + +
+ ); +}; + +export default Acupuncture; diff --git a/website/app/(pages)/acupuncture/views/AcuForDocs.tsx b/website/app/(pages)/acupuncture/views/AcuForDocs.tsx new file mode 100644 index 0000000..75c2b2e --- /dev/null +++ b/website/app/(pages)/acupuncture/views/AcuForDocs.tsx @@ -0,0 +1,20 @@ +import Link from "next/link"; + +const AcuForDocs = () => { + return ( +
+
+
View Dr. Feely's resources for doctors:
+ + Point Categories [PDF] + +
+
+ ); +}; + +export default AcuForDocs; diff --git a/website/app/(pages)/accupuncture/views/BasicsAndHist.tsx b/website/app/(pages)/acupuncture/views/BasicsAndHist.tsx similarity index 100% rename from website/app/(pages)/accupuncture/views/BasicsAndHist.tsx rename to website/app/(pages)/acupuncture/views/BasicsAndHist.tsx diff --git a/website/app/(pages)/acupuncture/views/EarAcupuncture.tsx b/website/app/(pages)/acupuncture/views/EarAcupuncture.tsx new file mode 100644 index 0000000..89feb05 --- /dev/null +++ b/website/app/(pages)/acupuncture/views/EarAcupuncture.tsx @@ -0,0 +1,9 @@ +const EarAcupuncture = () => { + return ( +
+ EarAcupuncture +
+ ); +}; + +export default EarAcupuncture; diff --git a/website/app/(pages)/acupuncture/views/ScalpAcupuncture.tsx b/website/app/(pages)/acupuncture/views/ScalpAcupuncture.tsx new file mode 100644 index 0000000..5b307b1 --- /dev/null +++ b/website/app/(pages)/acupuncture/views/ScalpAcupuncture.tsx @@ -0,0 +1,17 @@ +import Link from "next/link"; + +const ScalpAcupuncture = () => { + return ( +
+ + Patient Before-and-Afters [PDF] + +
+ ); +}; + +export default ScalpAcupuncture; diff --git a/website/app/(pages)/articles/(content)/accupuncture-basics/page.tsx b/website/app/(pages)/articles/(content)/acupuncture-basics/page.tsx similarity index 98% rename from website/app/(pages)/articles/(content)/accupuncture-basics/page.tsx rename to website/app/(pages)/articles/(content)/acupuncture-basics/page.tsx index ad71acd..0142cfc 100644 --- a/website/app/(pages)/articles/(content)/accupuncture-basics/page.tsx +++ b/website/app/(pages)/articles/(content)/acupuncture-basics/page.tsx @@ -1,9 +1,9 @@ import Article from "@/components/Article"; -const ArticleAccupuntureBasics = () => { +const ArticleAcupuntureBasics = () => { return (

@@ -177,4 +177,4 @@ const ArticleAccupuntureBasics = () => { ); }; -export default ArticleAccupuntureBasics; +export default ArticleAcupuntureBasics; diff --git a/website/app/(pages)/articles/(content)/accupuncture-history/page.tsx b/website/app/(pages)/articles/(content)/acupuncture-history/page.tsx similarity index 98% rename from website/app/(pages)/articles/(content)/accupuncture-history/page.tsx rename to website/app/(pages)/articles/(content)/acupuncture-history/page.tsx index ea69439..3cf92fd 100644 --- a/website/app/(pages)/articles/(content)/accupuncture-history/page.tsx +++ b/website/app/(pages)/articles/(content)/acupuncture-history/page.tsx @@ -1,9 +1,9 @@ import Article from "@/components/Article"; -const ArticleAccupunctureHistory = () => { +const ArticleAcupunctureHistory = () => { return (

@@ -126,4 +126,4 @@ const ArticleAccupunctureHistory = () => { ); }; -export default ArticleAccupunctureHistory; +export default ArticleAcupunctureHistory; diff --git a/website/app/(pages)/articles/(content)/acupuncture-letter/page.tsx b/website/app/(pages)/articles/(content)/acupuncture-letter/page.tsx new file mode 100644 index 0000000..58c19ea --- /dev/null +++ b/website/app/(pages)/articles/(content)/acupuncture-letter/page.tsx @@ -0,0 +1,14 @@ +import Article from "@/components/Article"; + +const ArticleAcupunctureLetter = () => { + return ( +

+ +
+ ); +}; + +export default ArticleAcupunctureLetter; diff --git a/website/app/(pages)/articles/(content)/ear-accupuncture-faq/page.tsx b/website/app/(pages)/articles/(content)/ear-acupuncture-faq/page.tsx similarity index 98% rename from website/app/(pages)/articles/(content)/ear-accupuncture-faq/page.tsx rename to website/app/(pages)/articles/(content)/ear-acupuncture-faq/page.tsx index 7f03f49..c470ad9 100644 --- a/website/app/(pages)/articles/(content)/ear-accupuncture-faq/page.tsx +++ b/website/app/(pages)/articles/(content)/ear-acupuncture-faq/page.tsx @@ -1,9 +1,9 @@ import Article from "@/components/Article"; -const ArticleEarAccupunctureFaq = () => { +const ArticleEarAcupunctureFaq = () => { return (

@@ -202,4 +202,4 @@ const ArticleEarAccupunctureFaq = () => { ); }; -export default ArticleEarAccupunctureFaq; +export default ArticleEarAcupunctureFaq; diff --git a/website/app/(pages)/articles/(content)/ear-accupuncture/page.tsx b/website/app/(pages)/articles/(content)/ear-acupuncture/page.tsx similarity index 99% rename from website/app/(pages)/articles/(content)/ear-accupuncture/page.tsx rename to website/app/(pages)/articles/(content)/ear-acupuncture/page.tsx index 2c2495f..611a155 100644 --- a/website/app/(pages)/articles/(content)/ear-accupuncture/page.tsx +++ b/website/app/(pages)/articles/(content)/ear-acupuncture/page.tsx @@ -1,9 +1,9 @@ import Article from "@/components/Article"; -const ArticleEarAccupuncture = () => { +const ArticleEarAcupuncture = () => { return (

@@ -320,4 +320,4 @@ const ArticleEarAccupuncture = () => { ); }; -export default ArticleEarAccupuncture; +export default ArticleEarAcupuncture; diff --git a/website/app/(pages)/articles/(content)/five-element-acupuncture/page.tsx b/website/app/(pages)/articles/(content)/five-element-acupuncture/page.tsx new file mode 100644 index 0000000..3ef53a6 --- /dev/null +++ b/website/app/(pages)/articles/(content)/five-element-acupuncture/page.tsx @@ -0,0 +1,14 @@ +import Article from "@/components/Article"; + +const ArticleFiveElementAcupuncture = () => { + return ( +

+ +
+ ); +}; + +export default ArticleFiveElementAcupuncture; diff --git a/website/app/(pages)/articles/(content)/international-acupuncture-bibliography/page.tsx b/website/app/(pages)/articles/(content)/international-acupuncture-bibliography/page.tsx new file mode 100644 index 0000000..9308f6b --- /dev/null +++ b/website/app/(pages)/articles/(content)/international-acupuncture-bibliography/page.tsx @@ -0,0 +1,14 @@ +import Article from "@/components/Article"; + +const ArticleInternationalAcupunctureBibliography = () => { + return ( +
+ +
+ ); +}; + +export default ArticleInternationalAcupunctureBibliography; diff --git a/website/app/(pages)/articles/(content)/scalp-accupuncture/page.tsx b/website/app/(pages)/articles/(content)/scalp-acupuncture/page.tsx similarity index 97% rename from website/app/(pages)/articles/(content)/scalp-accupuncture/page.tsx rename to website/app/(pages)/articles/(content)/scalp-acupuncture/page.tsx index 7f63a23..f3563a4 100644 --- a/website/app/(pages)/articles/(content)/scalp-accupuncture/page.tsx +++ b/website/app/(pages)/articles/(content)/scalp-acupuncture/page.tsx @@ -1,9 +1,9 @@ import Article from "@/components/Article"; -const ArticleScalpAccupuncture = () => { +const ArticleScalpAcupuncture = () => { return (

@@ -100,4 +100,4 @@ const ArticleScalpAccupuncture = () => { ); }; -export default ArticleScalpAccupuncture; +export default ArticleScalpAcupuncture; diff --git a/website/app/(pages)/articles/(content)/yamamoto-new-scalp-accupuncture-faq/page.tsx b/website/app/(pages)/articles/(content)/yamamoto-new-scalp-acupuncture-faq/page.tsx similarity index 97% rename from website/app/(pages)/articles/(content)/yamamoto-new-scalp-accupuncture-faq/page.tsx rename to website/app/(pages)/articles/(content)/yamamoto-new-scalp-acupuncture-faq/page.tsx index 7b5c0ef..d1afef3 100644 --- a/website/app/(pages)/articles/(content)/yamamoto-new-scalp-accupuncture-faq/page.tsx +++ b/website/app/(pages)/articles/(content)/yamamoto-new-scalp-acupuncture-faq/page.tsx @@ -1,10 +1,10 @@ import Article from "@/components/Article"; import Link from "next/link"; -const ArticleYamamotoNewScalpAccupunctureFaq = () => { +const ArticleYamamotoNewScalpAcupunctureFaq = () => { return (

@@ -144,4 +144,4 @@ const ArticleYamamotoNewScalpAccupunctureFaq = () => { ); }; -export default ArticleYamamotoNewScalpAccupunctureFaq; +export default ArticleYamamotoNewScalpAcupunctureFaq; diff --git a/website/app/(pages)/articles/views/ArtsForPatients.tsx b/website/app/(pages)/articles/views/ArtsForPatients.tsx index 50ed783..28ff32c 100644 --- a/website/app/(pages)/articles/views/ArtsForPatients.tsx +++ b/website/app/(pages)/articles/views/ArtsForPatients.tsx @@ -58,27 +58,27 @@ const ArtsForPatients = () => {

-

Accupuncture

- - Accupuncture Basics +

Acupuncture

+ + Acupuncture Basics - - Accupuncture History + + Acupuncture History - - Ear Accupuncture + + Ear Acupuncture - - Ear Accupuncture FAQ + + Ear Acupuncture FAQ - - Scalp Accupuncture + + Scalp Acupuncture - Yamamoto New Scalp Accupuncture FAQ + Yamamoto New Scalp Acupuncture FAQ
diff --git a/website/components/Footer.tsx b/website/components/Footer.tsx index 5e7b911..9fef3a1 100644 --- a/website/components/Footer.tsx +++ b/website/components/Footer.tsx @@ -32,16 +32,16 @@ const Footer = () => {
-

Accupuncture

+

Acupuncture

diff --git a/website/components/Navbar/NavPages.tsx b/website/components/Navbar/NavPages.tsx index f7ebc22..6a3da1f 100644 --- a/website/components/Navbar/NavPages.tsx +++ b/website/components/Navbar/NavPages.tsx @@ -14,8 +14,8 @@ const NavPages = ({ currentPageClasses }: Props) => { Osteopathy - - Accupuncture + + Acupuncture Articles diff --git a/website/public/content/doctor-resources/point-categories.pdf b/website/public/content/doctor-resources/point-categories.pdf new file mode 100644 index 0000000..6757d6b Binary files /dev/null and b/website/public/content/doctor-resources/point-categories.pdf differ diff --git a/website/public/content/patient-resources/scalp_accupuncture.pdf b/website/public/content/patient-resources/scalp_acupuncture.pdf similarity index 100% rename from website/public/content/patient-resources/scalp_accupuncture.pdf rename to website/public/content/patient-resources/scalp_acupuncture.pdf diff --git a/website/shared/outline.json b/website/shared/outline.json index 830d43e..f93775a 100644 --- a/website/shared/outline.json +++ b/website/shared/outline.json @@ -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" } ] },