3 Commits

Author SHA1 Message Date
449003e191 Merge version_2 into main
Merge version_2 into main
2026-03-11 04:49:33 +00:00
23a32a7b4a Update src/app/page.tsx 2026-03-11 04:49:29 +00:00
06d63c3930 Merge version_1 into main
Merge version_1 into main
2026-03-11 04:46:03 +00:00

View File

@@ -152,7 +152,7 @@ export default function LandingPage() {
tagIcon={TrendingUp} tagIcon={TrendingUp}
textboxLayout="default" textboxLayout="default"
useInvertedBackground={true} useInvertedBackground={true}
animationType="slide-up" animationType="depth-3d"
metrics={[ metrics={[
{ {
id: "1", value: "5K+", title: "Active Members", items: [ id: "1", value: "5K+", title: "Active Members", items: [
@@ -192,7 +192,7 @@ export default function LandingPage() {
cardTitle="10,000+ members have transformed their fitness with FitClub" cardTitle="10,000+ members have transformed their fitness with FitClub"
cardTag="Success Stories" cardTag="Success Stories"
cardTagIcon={Heart} cardTagIcon={Heart}
cardAnimation="blur-reveal" cardAnimation="slide-up"
useInvertedBackground={false} useInvertedBackground={false}
/> />
</div> </div>
@@ -226,16 +226,16 @@ export default function LandingPage() {
columns={[ columns={[
{ {
title: "Programs", items: [ title: "Programs", items: [
{ label: "Cardio Training", href: "features" }, { label: "Cardio Training", href: "#features" },
{ label: "Strength Training", href: "features" }, { label: "Strength Training", href: "#features" },
{ label: "Group Classes", href: "features" } { label: "Group Classes", href: "#features" }
] ]
}, },
{ {
title: "Company", items: [ title: "Company", items: [
{ label: "About Us", href: "about" }, { label: "About Us", href: "#about" },
{ label: "Membership", href: "pricing" }, { label: "Membership", href: "#pricing" },
{ label: "Contact", href: "contact" } { label: "Contact", href: "#contact" }
] ]
}, },
{ {
@@ -250,4 +250,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }