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..be43ff3 --- /dev/null +++ b/src/pages/FatiguePage.tsx @@ -0,0 +1,26 @@ +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 ( + <> +

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
+ + ); +} 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' }, ];