Update src/app/page.tsx

This commit is contained in:
2026-03-11 20:00:09 +00:00
parent d8dabe8ef2
commit a9b3dc9aca

View File

@@ -47,7 +47,7 @@ export default function Home() {
<HeroSplitKpi
title="Transform Your Fitness Journey"
description="Track workouts, nutrition, and progress with AI-powered insights"
background={{ variant: "circleGradient" }}
background={{ variant: "plain" }}
kpis={[
{ value: "10M+", label: "Workouts Tracked" },
{ value: "500K+", label: "Active Users" },
@@ -72,22 +72,22 @@ export default function Home() {
{
title: "Workout Tracking", description: "Log exercises, sets, and reps automatically", icon: Dumbbell,
mediaItems: [
{ type: "image", src: "/placeholder.jpg", alt: "Workout tracking" },
{ type: "image", src: "/placeholder.jpg", alt: "Progress chart" }
{ src: "/placeholder.jpg", alt: "Workout tracking" },
{ src: "/placeholder.jpg", alt: "Progress chart" }
]
},
{
title: "Cardio Hub", description: "Monitor heart rate and cardio performance", icon: Heart,
mediaItems: [
{ type: "image", src: "/placeholder.jpg", alt: "Heart rate monitor" },
{ type: "image", src: "/placeholder.jpg", alt: "Cardio stats" }
{ src: "/placeholder.jpg", alt: "Heart rate monitor" },
{ src: "/placeholder.jpg", alt: "Cardio stats" }
]
},
{
title: "Nutrition Planner", description: "Track meals and macros with ease", icon: Utensils,
mediaItems: [
{ type: "image", src: "/placeholder.jpg", alt: "Nutrition tracking" },
{ type: "image", src: "/placeholder.jpg", alt: "Meal plans" }
{ src: "/placeholder.jpg", alt: "Nutrition tracking" },
{ src: "/placeholder.jpg", alt: "Meal plans" }
]
}
]}
@@ -105,15 +105,15 @@ export default function Home() {
{
title: "Real-time Monitoring", description: "Live heart rate and performance tracking", icon: Heart,
mediaItems: [
{ type: "image", src: "/placeholder.jpg", alt: "Real-time monitoring" },
{ type: "image", src: "/placeholder.jpg", alt: "Live stats" }
{ src: "/placeholder.jpg", alt: "Real-time monitoring" },
{ src: "/placeholder.jpg", alt: "Live stats" }
]
},
{
title: "Performance Analytics", description: "Detailed cardio performance metrics", icon: TrendingUp,
mediaItems: [
{ type: "image", src: "/placeholder.jpg", alt: "Analytics" },
{ type: "image", src: "/placeholder.jpg", alt: "Performance graph" }
{ src: "/placeholder.jpg", alt: "Analytics" },
{ src: "/placeholder.jpg", alt: "Performance graph" }
]
}
]}
@@ -131,15 +131,15 @@ export default function Home() {
{
title: "Smart Recommendations", description: "Get workouts tailored to your goals", icon: Dumbbell,
mediaItems: [
{ type: "image", src: "/placeholder.jpg", alt: "Training plans" },
{ type: "image", src: "/placeholder.jpg", alt: "Recommendations" }
{ src: "/placeholder.jpg", alt: "Training plans" },
{ src: "/placeholder.jpg", alt: "Recommendations" }
]
},
{
title: "Progressive Overload", description: "Automatically adjust intensity over time", icon: TrendingUp,
mediaItems: [
{ type: "image", src: "/placeholder.jpg", alt: "Progressive overload" },
{ type: "image", src: "/placeholder.jpg", alt: "Training progression" }
{ src: "/placeholder.jpg", alt: "Progressive overload" },
{ src: "/placeholder.jpg", alt: "Training progression" }
]
}
]}
@@ -285,4 +285,4 @@ export default function Home() {
</div>
</ThemeProvider>
);
}
}