Merge version_1_1782855135046 into main

Merge version_1_1782855135046 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-07-01 17:12:02 +00:00
3 changed files with 131 additions and 301 deletions

View File

@@ -7,102 +7,37 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "/"
},
{
"name": "About",
"href": "#about"
},
{
"name": "The Blueprint",
"href": "/blueprint"
},
{
"name": "Clinic",
"href": "/clinic"
},
{
"name": "Hero",
"href": "#hero"
},
{
"name": "Features",
"href": "#features"
},
{
"name": "Metrics",
"href": "#metrics"
}
];
{ name: "Home", href: "/" },
{ name: "About", href: "#about" },
{ name: "The Blueprint", href: "/blueprint" },
{ name: "Clinic", href: "/clinic" }
];
return (
<StyleProvider buttonVariant="default" siteBackground="floatingGradient" heroBackground="cornerGlow">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Dr. Cam Daniels"
ctaButton={{
text: "Take the Quiz",
href: "#",
}}
navItems={navItems} />
logo="Dr. Cam Daniels"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=ze9tj8"
ctaButton={{ text: "Take the Quiz", href: "#" }}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBasic
columns={[
{
title: "Navigation",
items: [
{
label: "Home",
href: "/",
},
{
label: "About",
href: "/about",
},
{
label: "Blueprint",
href: "/blueprint",
},
{
label: "Clinic",
href: "/clinic",
},
],
},
{
title: "Connect",
items: [
{
label: "YouTube",
href: "#",
},
{
label: "Instagram",
href: "#",
},
],
},
{
title: "Legal",
items: [
{
label: "Disclaimer",
href: "#",
},
],
},
]}
leftText="© 2024 Dr. Cam Daniels. All rights reserved."
rightText="This is for patient education only and does not constitute advice. If you are experiencing severe or unusual symptoms, contact your medical provider or seek emergency care."
/>
columns={[
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Blueprint", href: "/blueprint" }, { label: "Clinic", href: "/clinic" }] },
{ title: "Connect", items: [{ label: "YouTube", href: "#" }, { label: "Instagram", href: "#" }] },
{ title: "Legal", items: [{ label: "Disclaimer", href: "#" }] }
]}
leftText="© 2024 Dr. Cam Daniels. All rights reserved."
rightText="This is for patient education only and does not constitute advice. If you are experiencing severe or unusual symptoms, contact your medical provider or seek emergency care."
/>
</SectionErrorBoundary>
</StyleProvider>
);
}
}

View File

@@ -5,42 +5,32 @@ import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function AboutPage() {
return (
<>
<div id="about" data-section="about">
<SectionErrorBoundary name="about">
<div id="about" data-section="about">
<SectionErrorBoundary name="about">
<AboutMediaOverlay
tag="Philosophy"
title="Precision over generalized wellness."
description="My clinical approach centers on identifying the specific state your nervous system is stuck in and applying targeted, objective protocols. No guessing."
imageSrc="http://img.b2bpic.net/free-photo/nurse-preparing-consult_23-2149309928.jpg"
textAnimation="slide-up"
/>
</SectionErrorBoundary>
</div>
tag="Philosophy"
title="Precision over generalized wellness."
description="My clinical approach centers on identifying the specific state your nervous system is stuck in and applying targeted, objective protocols. No guessing."
imageSrc="http://img.b2bpic.net/free-photo/nurse-preparing-consult_23-2149309928.jpg"
textAnimation="slide-up"
/>
</SectionErrorBoundary>
</div>
<div id="features" data-section="features">
<SectionErrorBoundary name="features">
<div id="features" data-section="features">
<SectionErrorBoundary name="features">
<FeaturesBento
tag="The Mission"
title="Evidence-based relief."
description="Combining structural integrity with neurological regulation."
features={[
{
title: "Structural Focus",
description: "Addressing the physical hardware to improve system throughput.",
imageSrc: "https://storage.googleapis.com/webild/default/no-image.jpg?id=ze9tj8&_wi=2",
imageAlt: "minimalist logo icon thin lines",
},
{
title: "Neurological Mapping",
description: "Understanding how your environment dictates your internal state.",
imageSrc: "http://img.b2bpic.net/free-photo/attractive-smiling-doctor-holding-hand-heart-dreamily-looking-camera-isolated-tender-touched-expression_574295-2653.jpg?_wi=3",
imageAlt: "minimalist logo icon thin lines",
},
]}
textAnimation="slide-up"
/>
</SectionErrorBoundary>
</div>
tag="The Mission"
title="Evidence-based relief."
description="Combining structural integrity with neurological regulation."
features={[
{ title: "Structural Focus", description: "Addressing the physical hardware to improve system throughput.", bentoComponent: "media-stack", mediaItems: [{ imageSrc: "https://storage.googleapis.com/webild/default/no-image.jpg?id=ze9tj8" }, { imageSrc: "https://storage.googleapis.com/webild/default/no-image.jpg?id=ze9tj8" }, { imageSrc: "https://storage.googleapis.com/webild/default/no-image.jpg?id=ze9tj8" }] },
{ title: "Neurological Mapping", description: "Understanding how your environment dictates your internal state.", bentoComponent: "media-stack", mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/attractive-smiling-doctor-holding-hand-heart-dreamily-looking-camera-isolated-tender-touched-expression_574295-2653.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/attractive-smiling-doctor-holding-hand-heart-dreamily-looking-camera-isolated-tender-touched-expression_574295-2653.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/attractive-smiling-doctor-holding-hand-heart-dreamily-looking-camera-isolated-tender-touched-expression_574295-2653.jpg" }] }
]}
textAnimation="slide-up"
/>
</SectionErrorBoundary>
</div>
</>
);
}
}

View File

@@ -1,204 +1,109 @@
import AboutMediaOverlay from '@/components/sections/about/AboutMediaOverlay';
import ContactCta from '@/components/sections/contact/ContactCta';
import FeaturesBento from '@/components/sections/features/FeaturesBento';
import HeroSplitVerticalMarqueeTall from '@/components/sections/hero/HeroSplitVerticalMarqueeTall';
import AboutMediaOverlay from '@/components/sections/about/AboutMediaOverlay';
import FeaturesBento from '@/components/sections/features/FeaturesBento';
import MetricsFeatureCards from '@/components/sections/metrics/MetricsFeatureCards';
import TestimonialColumnMarqueeCards from '@/components/sections/testimonial/TestimonialColumnMarqueeCards';
import { CheckCircle, Snowflake, Zap } from "lucide-react";
import ContactCta from '@/components/sections/contact/ContactCta';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
import { Zap, Snowflake, CheckCircle } from "lucide-react";
export default function HomePage() {
return (
<>
<div id="hero" data-section="hero">
<SectionErrorBoundary name="hero">
<div id="hero" data-section="hero">
<SectionErrorBoundary name="hero">
<HeroSplitVerticalMarqueeTall
tag="Nervous System Regulation Expert"
title="There's no universal way to regulate a nervous system. There's yours."
description="Most nervous system advice is built for a system that isn't yours. Take the 2-minute quiz built by a practicing clinician — find out exactly which way your nervous system is stuck, and the protocol built for that, not someone else's."
primaryButton={{
text: "Take the Free Nervous System Quiz",
href: "#",
}}
secondaryButton={{
text: "Learn More",
href: "/about",
}}
leftItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/attractive-smiling-doctor-holding-hand-heart-dreamily-looking-camera-isolated-tender-touched-expression_574295-2653.jpg?_wi=1",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/braille-alpahbet-pills-container-top-view_23-2148718145.jpg",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/pleased-young-male-doctor-wearing-medical-coat-stethoscope-around-his-neck-looking-side-isolated-blue-background_141793-133933.jpg",
},
]}
rightItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/hand-holding-pills-container_23-2148718176.jpg",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-pills-containers-stethoscope_23-2148718178.jpg",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-joyful-male-doctor_171337-1489.jpg",
},
]}
textAnimation="slide-up"
/>
</SectionErrorBoundary>
</div>
tag="Nervous System Regulation Expert"
title="There's no universal way to regulate a nervous system. There's yours."
description="Most nervous system advice is built for a system that isn't yours. Take the 2-minute quiz built by a practicing clinician — find out exactly which way your nervous system is stuck, and the protocol built for that, not someone else's."
primaryButton={{ text: "Take the Free Nervous System Quiz", href: "#" }}
secondaryButton={{ text: "Learn More", href: "/about" }}
leftItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/attractive-smiling-doctor-holding-hand-heart-dreamily-looking-camera-isolated-tender-touched-expression_574295-2653.jpg" },
{ imageSrc: "http://img.b2bpic.net/free-photo/braille-alpahbet-pills-container-top-view_23-2148718145.jpg" },
{ imageSrc: "http://img.b2bpic.net/free-photo/pleased-young-male-doctor-wearing-medical-coat-stethoscope-around-his-neck-looking-side-isolated-blue-background_141793-133933.jpg" }
]}
rightItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/hand-holding-pills-container_23-2148718176.jpg" },
{ imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-pills-containers-stethoscope_23-2148718178.jpg" },
{ imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-joyful-male-doctor_171337-1489.jpg" }
]}
textAnimation="slide-up"
/>
</SectionErrorBoundary>
</div>
<div id="about" data-section="about">
<SectionErrorBoundary name="about">
<div id="about" data-section="about">
<SectionErrorBoundary name="about">
<AboutMediaOverlay
tag="The Framework"
title="You're not failing at regulation. You were given the wrong protocol."
description="The nervous system space is full of generic advice — breathe this way, cold plunge, 'just relax' — handed to everyone the same way. It fails constantly, because a system stuck in shutdown needs the opposite of one stuck in high-alert. Tell a wired system to slow down, it helps. Tell a shut-down system the same thing, it sinks deeper. Same advice, opposite result. That's not a personal failure. That's a category error in the advice itself."
textAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/portrait-smiling-male-doctor_171337-1485.jpg"
/>
</SectionErrorBoundary>
</div>
tag="The Framework"
title="You're not failing at regulation. You were given the wrong protocol."
description="The nervous system space is full of generic advice — breathe this way, cold plunge, 'just relax' — handed to everyone the same way. It fails constantly, because a system stuck in shutdown needs the opposite of one stuck in high-alert. Tell a wired system to slow down, it helps. Tell a shut-down system the same thing, it sinks deeper. Same advice, opposite result. That's not a personal failure. That's a category error in the advice itself."
textAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/portrait-smiling-male-doctor_171337-1485.jpg"
/>
</SectionErrorBoundary>
</div>
<div id="features" data-section="features">
<SectionErrorBoundary name="features">
<div id="features" data-section="features">
<SectionErrorBoundary name="features">
<FeaturesBento
tag="The Three Types"
title="Every nervous system runs one of three ways."
description="Stop chasing generic health trends and understand your biological baseline."
features={[
{
title: "Hyperactive",
description: "Fight-or-Flight. Racing thoughts, anxious, 'tired but wired,' shallow sleep, jaw and neck tension.",
bentoComponent: "info-card-marquee",
infoCards: [
{
icon: Zap,
label: "State",
value: "High Alert",
},
],
imageSrc: "https://storage.googleapis.com/webild/default/no-image.jpg?id=ze9tj8&_wi=1",
imageAlt: "minimalist logo icon thin lines",
},
{
title: "Hypoactive",
description: "Freeze-Shutdown. Fatigue that sleep doesn't fix, brain fog, numbness, low motivation, checked out.",
bentoComponent: "info-card-marquee",
infoCards: [
{
icon: Snowflake,
label: "State",
value: "Shutdown",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/attractive-smiling-doctor-holding-hand-heart-dreamily-looking-camera-isolated-tender-touched-expression_574295-2653.jpg?_wi=2",
imageAlt: "minimalist logo icon thin lines",
},
{
title: "Regulated",
description: "Flexible. Spikes under real stress, recovers, comes back to baseline.",
bentoComponent: "info-card-marquee",
infoCards: [
{
icon: CheckCircle,
label: "State",
value: "Baseline",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/man-having-eye-sight-check-ophthalmology-clinic_23-2149082469.jpg",
imageAlt: "minimalist logo icon thin lines",
},
]}
textAnimation="slide-up"
/>
</SectionErrorBoundary>
</div>
tag="The Three Types"
title="Every nervous system runs one of three ways."
description="Stop chasing generic health trends and understand your biological baseline."
features={[
{ title: "Hyperactive", description: "Fight-or-Flight. Racing thoughts, anxious, 'tired but wired,' shallow sleep, jaw and neck tension.", bentoComponent: "info-card-marquee", infoCards: [{ icon: "Zap", label: "State", value: "High Alert" }] },
{ title: "Hypoactive", description: "Freeze-Shutdown. Fatigue that sleep doesn't fix, brain fog, numbness, low motivation, checked out.", bentoComponent: "info-card-marquee", infoCards: [{ icon: "Snowflake", label: "State", value: "Shutdown" }] },
{ title: "Regulated", description: "Flexible. Spikes under real stress, recovers, comes back to baseline.", bentoComponent: "info-card-marquee", infoCards: [{ icon: "CheckCircle", label: "State", value: "Baseline" }] }
]}
textAnimation="slide-up"
/>
</SectionErrorBoundary>
</div>
<div id="metrics" data-section="metrics">
<SectionErrorBoundary name="metrics">
<div id="metrics" data-section="metrics">
<SectionErrorBoundary name="metrics">
<MetricsFeatureCards
tag="Clinical Rigor"
title="Built by a clinician who sees this every day."
description="Dr. Cam Daniels uses objective metrics to guide care, not intuition."
metrics={[
{
value: "80+",
title: "Peer-Reviewed Studies",
features: [
"Advanced Neurological Research",
"Validated Biomechanical Mapping",
"System-Specific Protocols",
],
},
]}
textAnimation="slide-up"
/>
</SectionErrorBoundary>
</div>
tag="Clinical Rigor"
title="Built by a clinician who sees this every day."
description="Dr. Cam Daniels uses objective metrics to guide care, not intuition."
metrics={[
{ value: "80+", title: "Peer-Reviewed Studies", features: ["Advanced Neurological Research", "Validated Biomechanical Mapping", "System-Specific Protocols"] }
]}
textAnimation="slide-up"
/>
</SectionErrorBoundary>
</div>
<div id="testimonial" data-section="testimonial">
<SectionErrorBoundary name="testimonial">
<div id="testimonial" data-section="testimonial">
<SectionErrorBoundary name="testimonial">
<TestimonialColumnMarqueeCards
tag="Social Proof"
title="Real systems. Real results."
testimonials={[
{
name: "Sarah J.",
role: "Professional",
quote: "Finally understood why my anxiety wouldn't subside. The protocol changed everything.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-senior-entrepreneur_1098-15359.jpg",
},
{
name: "Mark D.",
role: "Entrepreneur",
quote: "I was stuck in shutdown for years. Cam's clarity was the lever I needed.",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-female-doctor-medical-setting_23-2152005921.jpg",
},
{
name: "Emily R.",
role: "Creative",
quote: "Stop guessing. This framework actually works for my biology.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-beautiful-female-doctor-happily-looking-camera-smiling-white-background_574295-2641.jpg",
},
{
name: "David K.",
role: "Developer",
quote: "Data-backed, simple, and effective. The regulation protocol is genius.",
imageSrc: "http://img.b2bpic.net/free-photo/physician-having-conversation-with-adult-medical-cabinet-taking-notes-about-health-care-diagnosis-general-practitioner-talking-mother-about-recovery-treatment-appointment_482257-41817.jpg",
},
{
name: "Lisa B.",
role: "Teacher",
quote: "Shifted my daily fatigue in weeks. I'm finally recovering.",
imageSrc: "http://img.b2bpic.net/free-photo/closeup-patient-man-looking-into-camera-waiting-doctors-start-stomatology-surgery-sitting-dental-chair_482257-4877.jpg",
},
]}
textAnimation="slide-up"
/>
</SectionErrorBoundary>
</div>
tag="Social Proof"
title="Real systems. Real results."
description="What our clients are saying about the regulation framework."
testimonials={[
{ name: "Sarah J.", role: "Professional", quote: "Finally understood why my anxiety wouldn't subside. The protocol changed everything.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-senior-entrepreneur_1098-15359.jpg" },
{ name: "Mark D.", role: "Entrepreneur", quote: "I was stuck in shutdown for years. Cam's clarity was the lever I needed.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-female-doctor-medical-setting_23-2152005921.jpg" },
{ name: "Emily R.", role: "Creative", quote: "Stop guessing. This framework actually works for my biology.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-beautiful-female-doctor-happily-looking-camera-smiling-white-background_574295-2641.jpg" },
{ name: "David K.", role: "Developer", quote: "Data-backed, simple, and effective. The regulation protocol is genius.", imageSrc: "http://img.b2bpic.net/free-photo/physician-having-conversation-with-adult-medical-cabinet-taking-notes-about-health-care-diagnosis-general-practitioner-talking-mother-about-recovery-treatment-appointment_482257-41817.jpg" },
{ name: "Lisa B.", role: "Teacher", quote: "Shifted my daily fatigue in weeks. I'm finally recovering.", imageSrc: "http://img.b2bpic.net/free-photo/closeup-patient-man-looking-into-camera-waiting-doctors-start-stomatology-surgery-sitting-dental-chair_482257-4877.jpg" }
]}
textAnimation="slide-up"
/>
</SectionErrorBoundary>
</div>
<div id="contact" data-section="contact">
<SectionErrorBoundary name="contact">
<div id="contact" data-section="contact">
<SectionErrorBoundary name="contact">
<ContactCta
tag="Pick your path"
text="Start your regulation journey today."
primaryButton={{
text: "Take the Quiz",
href: "#",
}}
secondaryButton={{
text: "Join the Blueprint",
href: "/blueprint",
}}
textAnimation="slide-up"
/>
</SectionErrorBoundary>
</div>
tag="Pick your path"
text="Start your regulation journey today."
primaryButton={{ text: "Take the Quiz", href: "#" }}
secondaryButton={{ text: "Join the Blueprint", href: "/blueprint" }}
textAnimation="slide-up"
/>
</SectionErrorBoundary>
</div>
</>
);
}
}