27 lines
947 B
TypeScript
27 lines
947 B
TypeScript
import { Metadata } from "next";
|
|
import AcuForDocs from "./views/AcuForDocs";
|
|
import BasicsAndHist from "./views/BasicsAndHist";
|
|
import EarAcupuncture from "./views/EarAcupuncture";
|
|
import ScalpAcupuncture from "./views/ScalpAcupuncture";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Accupuncture | Dr. Feely",
|
|
description: `Acupuncture, a practice originating in China over 5,000 years
|
|
ago, diverges from Western paradigms with its emphasis on holistic patterns
|
|
and relationships. The effectiveness of acupuncture was long backed by
|
|
anecdotal evidence until 1976 when controlled experiments started gaining
|
|
ground. Today, at least 17 lines of evidence underscore its impact.`,
|
|
};
|
|
|
|
const Acupuncture = () => {
|
|
return (
|
|
<main>
|
|
<BasicsAndHist></BasicsAndHist>
|
|
<EarAcupuncture></EarAcupuncture>
|
|
<ScalpAcupuncture></ScalpAcupuncture>
|
|
<AcuForDocs></AcuForDocs>
|
|
</main>
|
|
);
|
|
};
|
|
|
|
export default Acupuncture;
|