footer sitemap complete

This commit is contained in:
Noah Swerhun 2023-09-10 01:03:26 -05:00
parent d5fc8c9552
commit 930f1808d9
13 changed files with 46 additions and 76 deletions

View file

@ -10,7 +10,7 @@ const AcuForDocs = () => {
<View
bg_color="bg-primary-500"
txt_color="text-primary-100"
id="acufordocs"
id="fordocs"
className="!min-h-0"
>
<div className="flex h-full flex-col items-center justify-around md:flex-row">

View file

@ -6,11 +6,7 @@ import acu1 from "@/public/content/acupuncture_1.jpg";
const BasicsAndHist = () => {
return (
<View
bg_color="bg-primary-500"
txt_color="text-primary-100"
id="basicsandhist"
>
<View bg_color="bg-primary-500" txt_color="text-primary-100" id="basics">
<div className="flex flex-col items-center justify-around md:flex-row">
<div className="basis-2/5">
<h1 className="text-6xl md:text-7xl">Acupuncture</h1>

View file

@ -8,7 +8,7 @@ const EarAcupuncture = () => {
<CenterView
bg_color="bg-primary-300"
txt_color="text-primary-500"
id="earacupuncture"
id="auriculo"
>
<div className="flex flex-col items-center justify-around md:flex-row">
<div className="basis-2/5">

View file

@ -11,7 +11,7 @@ const ScalpAcupuncture = () => {
<CenterView
bg_color="bg-primary-100"
txt_color="text-primary-500"
id="scalpacupuncture"
id="scalp"
>
<div className="flex flex-col items-center justify-around md:flex-row">
<div className="basis-2/5">

View file

@ -10,7 +10,7 @@ const ArtsForDocs = () => {
<CenterView
bg_color="bg-primary-500"
txt_color="text-primary-100"
id="artsfordocs"
id="fordocs"
>
<div className="flex flex-col items-center justify-around gap-6 md:flex-row">
<div className="basis-2/5">

View file

@ -10,7 +10,7 @@ const ArtsForPatients = () => {
<CenterView
bg_color="bg-primary-300"
txt_color="text-primary-500"
id="artsforpatients"
id="forpatients"
>
<div className="flex flex-col items-center justify-around gap-6 md:flex-row">
<div className="basis-2/5">

View file

@ -6,11 +6,7 @@ import LearnMoreLink from "@/components/LearnMoreLink";
const OsteoBasics = () => {
return (
<View
bg_color="bg-primary-100"
txt_color="text-primary-500"
id="osteobasics"
>
<View bg_color="bg-primary-100" txt_color="text-primary-500" id="basics">
<div className="flex flex-col items-center justify-around gap-6 md:flex-row">
<div className="basis-2/5">
<Image

View file

@ -10,7 +10,7 @@ const OsteoForDocs = () => {
<View
bg_color="bg-primary-500"
txt_color="text-primary-100"
id="osteofordocs"
id="fordocs"
className="!min-h-0"
>
<div className="flex h-full flex-col items-center justify-around md:flex-row">

View file

@ -15,7 +15,7 @@ const PediatricCare = () => {
<View
bg_color="bg-primary-300"
txt_color="text-primary-500"
id="pediatriccare"
id="pediatrics"
>
<h1>Pediatrics</h1>
<div className="my-10 grid place-items-center gap-y-12 md:grid-cols-2">

View file

@ -7,11 +7,7 @@ import Image from "next/image";
const CertsAndFellows = () => {
return (
<View
bg_color="bg-primary-300"
txt_color="text-primary-500"
id="certsandfellows"
>
<View bg_color="bg-primary-300" txt_color="text-primary-500" id="accolades">
<h1>Accolades & Awards</h1>
<div className="mb-10 flex flex-col gap-10 md:flex-row">
<div className="md:basis-1/2">

View file

@ -4,11 +4,7 @@ import Edu from "./components/Edu";
const EduAndProExp = () => {
return (
<View
bg_color="bg-primary-100"
txt_color="text-primary-500"
id="eduandproexp"
>
<View bg_color="bg-primary-100" txt_color="text-primary-500" id="eduandbiz">
<h1>Education & Business</h1>
<Edu className="mb-10" />
<ProExp />

View file

@ -1,3 +1,5 @@
import Link from "next/link";
const Footer = () => {
return (
<footer className="w-full bg-neutral-900 text-neutral-200">
@ -7,13 +9,16 @@ const Footer = () => {
<h3 className="text-xl font-bold">Home</h3>
<ul className="text-sm">
<li>
<a href="/#introduction">Introduction</a>
<Link href="/#introduction">Introduction</Link>
</li>
<li>
<a href="/#philosophy">Clinical Philosophy</a>
<Link href="/#eduandbiz">Education and Business</Link>
</li>
<li>
<a href="/#accomplishments">Biography & Accomplishments</a>
<Link href="/#accolades">Accolades and Awards</Link>
</li>
<li>
<Link href="/#academicwork">Academic Work</Link>
</li>
</ul>
</div>
@ -21,13 +26,13 @@ const Footer = () => {
<h3 className="text-xl font-bold">Osteopathy</h3>
<ul className="text-sm">
<li>
<a href="/osteopathy/#">a</a>
<Link href="/osteopathy/#basics">Basics</Link>
</li>
<li>
<a href="/osteopathy/#">b</a>
<Link href="/osteopathy/#pediatrics">Pediatrics</Link>
</li>
<li>
<a href="/osteopathy/#">c</a>
<Link href="/osteopathy/#fordocs">For Doctors</Link>
</li>
</ul>
</div>
@ -35,13 +40,16 @@ const Footer = () => {
<h3 className="text-xl font-bold">Acupuncture</h3>
<ul className="text-sm">
<li>
<a href="/acupuncture/#">a</a>
<Link href="/acupuncture/#basics">Basics and History</Link>
</li>
<li>
<a href="/acupuncture/#">b</a>
<Link href="/acupuncture/#auriculo">Auriculotherapy</Link>
</li>
<li>
<a href="/acupuncture/#">c</a>
<Link href="/acupuncture/#scalp">Scalp Acupunture</Link>
</li>
<li>
<Link href="/acupuncture/#fordocs">For Doctors</Link>
</li>
</ul>
</div>
@ -49,13 +57,10 @@ const Footer = () => {
<h3 className="text-xl font-bold">Articles</h3>
<ul className="text-sm">
<li>
<a href="/articles/#">a</a>
<Link href="/articles/#forpatients">For Patients</Link>
</li>
<li>
<a href="/articles/#">b</a>
</li>
<li>
<a href="/articles/#">c</a>
<Link href="/articles/#fordocs">For Doctors</Link>
</li>
</ul>
</div>
@ -63,13 +68,7 @@ const Footer = () => {
<h3 className="text-xl font-bold">NOR</h3>
<ul className="text-sm">
<li>
<a href="/nor/#">a</a>
</li>
<li>
<a href="/nor/#">b</a>
</li>
<li>
<a href="/nor/#">c</a>
<Link href="/nor/#nor">Neuro Ocular Release</Link>
</li>
</ul>
</div>
@ -77,9 +76,6 @@ const Footer = () => {
<div className="mt-8 flex justify-center">
<p>Copyright (C) {new Date().getFullYear()} Richard A. Feely, DO</p>
</div>
<div className="flex justify-center">
<a href="/licenses">Licenses & Credits</a>
</div>
</div>
</footer>
);

View file

@ -6,12 +6,12 @@
"sections": [
{ "name": "Introduction", "id": "#introduction" },
{
"name": "Education and Professional Experience",
"id": "#eduandproexp"
"name": "Education ands Business",
"id": "#eduandbiz"
},
{
"name": "Board Certifications and Fellowships",
"id": "#certsandfellows"
"name": "Accolades and Awards",
"id": "#accolades"
},
{
"name": "Academic Work",
@ -23,14 +23,14 @@
"name": "Osteopathy",
"route": "/osteopathy",
"sections": [
{ "name": "Basics", "id": "#osteobasics" },
{ "name": "Basics", "id": "#basics" },
{
"name": "Pediatric Care",
"id": "#pediatriccare"
"id": "/#pediatrics"
},
{
"name": "For Doctors",
"id": "#osteofordocs"
"id": "/#fordocs"
}
]
},
@ -38,18 +38,18 @@
"name": "Acupuncture",
"route": "/acupuncture",
"sections": [
{ "name": "Basics and History", "route": "/#basicsandhist" },
{ "name": "Basics and History", "route": "/#basics" },
{
"name": "Ear Acupuncture",
"id": "#earacupuncture"
"name": "Auriculotherapy",
"id": "#auriculo"
},
{
"name": "Scalp Acupuncture",
"id": "#scalpacupuncture"
"id": "#scalp"
},
{
"name": "For Doctors",
"id": "#acufordocs"
"id": "#fordocs"
}
]
},
@ -57,27 +57,17 @@
"name": "Articles",
"route": "/articles",
"sections": [
{ "name": "For Patients", "id": "/#artsforpatients" },
{ "name": "For Patients", "id": "/#forpatients" },
{
"name": "For Doctors",
"id": "/#artsfordoctors"
"id": "/#fordocs"
}
]
},
{
"name": "Neuro Ocular Release",
"route": "/nor",
"sections": [
{ "name": "NOR", "id": "/#nor" },
{
"name": "Articles",
"id": "/#norarticles"
},
{
"name": "Videos",
"id": "/#norvideos"
}
]
"sections": [{ "name": "NOR", "id": "/#nor" }]
}
]
}