From baf2343a7154d9402e570bbb37f26ca85e9e111e Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 1 Jul 2026 17:11:45 +0000 Subject: [PATCH 1/4] Bob AI: fix build error in src/components/Layout.tsx --- src/components/Layout.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 3657679..610c3ee 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Wed, 1 Jul 2026 17:11:54 +0000 Subject: [PATCH 2/4] Update src/components/Layout.tsx --- src/components/Layout.tsx | 104 +++++++------------------------------- 1 file changed, 19 insertions(+), 85 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 610c3ee..9f69442 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,103 +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 ( + logo="Dr. Cam Daniels" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=ze9tj8" + ctaButton={{ text: "Take the Quiz", href: "#" }} + navItems={navItems} + />
+ 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." + />
); -} +} \ No newline at end of file -- 2.49.1 From ee3e54931ff02d2953b5e3d8963bc41b9ae78365 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 1 Jul 2026 17:11:55 +0000 Subject: [PATCH 3/4] Update src/pages/AboutPage.tsx --- src/pages/AboutPage.tsx | 58 +++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 34 deletions(-) diff --git a/src/pages/AboutPage.tsx b/src/pages/AboutPage.tsx index 26dba4f..c71099c 100644 --- a/src/pages/AboutPage.tsx +++ b/src/pages/AboutPage.tsx @@ -5,42 +5,32 @@ import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; export default function AboutPage() { return ( <> -
- +
+ - -
+ 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" + /> +
+
-
- +
+ - -
+ 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" + /> +
+
); -} +} \ No newline at end of file -- 2.49.1 From 9c9086266d2a222fd1dabdc4991baa3d7f4650f6 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 1 Jul 2026 17:11:55 +0000 Subject: [PATCH 4/4] Update src/pages/HomePage.tsx --- src/pages/HomePage.tsx | 271 +++++++++++++---------------------------- 1 file changed, 88 insertions(+), 183 deletions(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index b384b2c..02c4585 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -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 ( <> -
- +
+ - -
+ 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" + /> +
+
-
- +
+ - -
+ 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" + /> +
+
-
- +
+ - -
+ 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" + /> +
+
-
- +
+ - -
+ 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" + /> +
+
-
- +
+ - -
+ 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" + /> +
+
-
- +
+ - -
+ 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" + /> +
+
); -} +} \ No newline at end of file -- 2.49.1