From 8fa3fb592c9d12f49fa1ac5b31c0d2cdf05eb5d0 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Thu, 25 Jun 2026 08:30:26 +0000 Subject: [PATCH 1/2] Bob AI: Add fatigue page --- src/App.tsx | 2 + src/components/Layout.tsx | 2 + src/pages/FatiguePage.tsx | 95 +++++++++++++++++++++++++++++++++++++++ src/routes.ts | 1 + 4 files changed, 100 insertions(+) create mode 100644 src/pages/FatiguePage.tsx diff --git a/src/App.tsx b/src/App.tsx index 1351757..0d5acc1 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -4,6 +4,7 @@ import HomePage from './pages/HomePage'; import NutritionPage from "@/pages/NutritionPage"; import ServiceDetailPage from './pages/ServiceDetailPage'; +import FatiguePage from "@/pages/FatiguePage"; export default function App() { return ( @@ -12,6 +13,7 @@ export default function App() { } /> } /> + } /> ); } diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 467cd59..9b9684b 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -36,6 +36,8 @@ export default function Layout() { "href": "#training-schedules" }, { name: "Nutrition", href: "/nutrition" }, + { name: "Fatigue", href: "/fatigue" }, + ]; diff --git a/src/pages/FatiguePage.tsx b/src/pages/FatiguePage.tsx new file mode 100644 index 0000000..dc4d7fb --- /dev/null +++ b/src/pages/FatiguePage.tsx @@ -0,0 +1,95 @@ +import React from "react"; +import { routes } from "@/routes"; +import NavbarCentered from "@/components/ui/NavbarCentered"; +import HeroSplit from "@/components/sections/hero/HeroSplit"; +import FeaturesBentoGrid from "@/components/sections/features/FeaturesBentoGrid"; +import PricingLayeredCards from "@/components/sections/pricing/PricingLayeredCards"; +import ContactCta from "@/components/sections/contact/ContactCta"; + +export default function FatiguePage() { + return ( +
+ ({ name: r.label, href: r.path }))} + ctaButton={{ text: "Start Program", href: "/contact" }} + /> + +
+ + +
+ +
+ +
+ +
+ + +
+
+ ); +} \ No newline at end of file diff --git a/src/routes.ts b/src/routes.ts index 301c15a..07fdfff 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -7,4 +7,5 @@ export interface Route { export const routes: Route[] = [ { path: '/', label: 'Home', pageFile: 'HomePage' }, { path: '/nutrition', label: 'Nutrition', pageFile: 'NutritionPage' }, + { path: '/fatigue', label: 'Fatigue', pageFile: 'FatiguePage' }, ]; -- 2.49.1 From 277139d5a42e3ca2ff6c99fed218b52474d9cb94 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Thu, 25 Jun 2026 08:31:06 +0000 Subject: [PATCH 2/2] Bob AI: Populate src/pages/FatiguePage.tsx (snippet builder, 3 sections) --- src/pages/FatiguePage.tsx | 113 ++++++++------------------------------ 1 file changed, 22 insertions(+), 91 deletions(-) diff --git a/src/pages/FatiguePage.tsx b/src/pages/FatiguePage.tsx index dc4d7fb..be43ff3 100644 --- a/src/pages/FatiguePage.tsx +++ b/src/pages/FatiguePage.tsx @@ -1,95 +1,26 @@ -import React from "react"; -import { routes } from "@/routes"; -import NavbarCentered from "@/components/ui/NavbarCentered"; -import HeroSplit from "@/components/sections/hero/HeroSplit"; -import FeaturesBentoGrid from "@/components/sections/features/FeaturesBentoGrid"; -import PricingLayeredCards from "@/components/sections/pricing/PricingLayeredCards"; -import ContactCta from "@/components/sections/contact/ContactCta"; +import Button from "@/components/ui/Button"; +import HeroBackgroundSlot from "@/components/ui/HeroBackgroundSlot"; +import TextAnimation from "@/components/ui/TextAnimation"; +import ImageOrVideo from "@/components/ui/ImageOrVideo"; +import ScrollReveal from "@/components/ui/ScrollReveal"; +import GridOrCarousel from "@/components/ui/GridOrCarousel"; +import { Check } from "lucide-react"; export default function FatiguePage() { return ( -
- ({ name: r.label, href: r.path }))} - ctaButton={{ text: "Start Program", href: "/contact" }} - /> - -
- - -
- -
- -
- -
- - -
-
+ <> +

Overcome Exhaustion

+

Reclaim Your Energy

Power-Packed Vegetables

Leafy greens and root vegetables provide essential vitamins to sustain your energy levels all day.

+

Revitalizing Fruits

Antioxidant-rich fruits offer a natural, jitter-free energy boost to combat midday slumps.

+

Weekly Fatigue Programs

Structured routines combining nutrition, rest, and gentle movement to rebuild your stamina.

+

Pricing Plans

Nutrition Starter

$49/moBoost your energy with our guided natural nutrition plan.
Weekly fruit & veggie guides
+
Energy-boosting recipes
+
Daily hydration tracking
+
Email support
+

Full Recovery

$99/moA complete weekly program to overcome exhaustion.
Everything in Starter
+
Weekly fatigue management plan
+
1-on-1 energy coaching
+
Sleep hygiene protocols
+ ); -} \ No newline at end of file +} -- 2.49.1