From 093309937bbf6f681b9ce1087ea137a7dd9f747b Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 19:44:57 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 794 +++++++++++++++++++++-------------------------- 1 file changed, 359 insertions(+), 435 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 01b6e75..3120059 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,7 +1,6 @@ -'use client'; +"use client"; -import React from 'react'; -import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive'; @@ -13,450 +12,375 @@ import TestimonialCardTwelve from '@/components/sections/testimonial/Testimonial import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import ContactText from '@/components/sections/contact/ContactText'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; -import { Zap, Dumbbell, Apple, TrendingUp } from 'lucide-react'; +import { Activity, Apple, Brain, Dumbbell, Heart, Target, Zap, Users, Star, TrendingDown, TrendingUp } from 'lucide-react'; +import { WorkoutDataIntegration } from '@/app/components/WorkoutDataIntegration'; -const navItems = [ - { name: 'Home', id: '/' }, - { name: 'Features', id: 'onboarding' }, - { name: 'Pricing', id: 'nutrition' }, - { name: 'Team', id: 'team' }, - { name: 'Contact', id: 'contact' }, -]; - -const Page = () => { +export default function LandingPage() { return ( - - + + + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- -
+ +
+ ); -}; - -export default Page; +}