3 Commits

Author SHA1 Message Date
a2cb18fb20 Update src/app/page.tsx 2026-03-06 13:14:26 +00:00
0b53cdd433 Update src/app/layout.tsx 2026-03-06 13:14:26 +00:00
eaa14ef536 Merge version_2 into main
Merge version_2 into main
2026-03-06 13:11:48 +00:00
2 changed files with 14 additions and 4 deletions

View File

@@ -1392,4 +1392,4 @@ export default function RootLayout({
</body> </body>
</html> </html>
); );
} }

View File

@@ -114,7 +114,8 @@ export default function HomePage() {
"Muscle group percentage tracking", "Body fat analysis with trends", "Symmetry detection and recommendations", "Personalized nutrition insights" "Muscle group percentage tracking", "Body fat analysis with trends", "Symmetry detection and recommendations", "Personalized nutrition insights"
], ],
buttons: [ buttons: [
{ text: "Learn More", href: "#" } { text: "Learn More", href: "#" },
{ text: "Try Now", href: "/pricing" }
] ]
}, },
{ {
@@ -122,17 +123,26 @@ export default function HomePage() {
"Adaptive difficulty progression", "Muscle group targeting algorithms", "Recovery optimization recommendations", "Performance peak predictions" "Adaptive difficulty progression", "Muscle group targeting algorithms", "Recovery optimization recommendations", "Performance peak predictions"
], ],
buttons: [ buttons: [
{ text: "Explore Plans", href: "#" } { text: "Explore Plans", href: "#" },
{ text: "Get Started", href: "/pricing" }
] ]
}, },
{ {
id: "progress-metrics", label: "Metrics", title: "Comprehensive Progress Dashboard", items: [ id: "progress-metrics", label: "Metrics", title: "Comprehensive Progress Dashboard", items: [
"Strength metrics and PRs", "Volume and intensity tracking", "Long-term progress visualization", "Achievement milestones and badges" "Strength metrics and PRs", "Volume and intensity tracking", "Long-term progress visualization", "Achievement milestones and badges"
],
buttons: [
{ text: "View Dashboard", href: "#" },
{ text: "Try Now", href: "/pricing" }
] ]
}, },
{ {
id: "nutrition-ai", label: "Nutrition", title: "Macro-Optimized Meal Planning", items: [ id: "nutrition-ai", label: "Nutrition", title: "Macro-Optimized Meal Planning", items: [
"Calorie and macro recommendations", "AI meal suggestions for goals", "Grocery list generation", "Restaurant menu analysis" "Calorie and macro recommendations", "AI meal suggestions for goals", "Grocery list generation", "Restaurant menu analysis"
],
buttons: [
{ text: "Explore Nutrition", href: "#" },
{ text: "Get Started", href: "/pricing" }
] ]
} }
]} ]}
@@ -282,4 +292,4 @@ export default function HomePage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }