7 Commits

Author SHA1 Message Date
48a7d4ded4 Merge version_2 into main
Merge version_2 into main
2026-04-07 18:53:42 +00:00
8f7d458532 Update src/app/page.tsx 2026-04-07 18:53:39 +00:00
0275b1086c Merge version_2 into main
Merge version_2 into main
2026-04-07 18:53:06 +00:00
a8158bfbaf Update src/app/page.tsx 2026-04-07 18:53:00 +00:00
253f174ed7 Merge version_1 into main
Merge version_1 into main
2026-04-07 18:47:53 +00:00
f6ce786289 Merge version_1 into main
Merge version_1 into main
2026-04-07 18:47:26 +00:00
7a1b543bcb Merge version_1 into main
Merge version_1 into main
2026-04-07 18:46:55 +00:00

View File

@@ -9,6 +9,7 @@ import HeroCentered from '@/components/sections/hero/HeroCentered';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine';
export default function LandingPage() {
return (
@@ -32,6 +33,8 @@ export default function LandingPage() {
name: "Home", id: "hero"},
{
name: "Features", id: "features"},
{
name: "Disciplines", id: "disciplines"},
{
name: "Pricing", id: "pricing"},
]}
@@ -111,6 +114,28 @@ export default function LandingPage() {
/>
</div>
<div id="disciplines" data-section="disciplines">
<FeatureCardTwentyNine
title="Discipline-Specific Training"
description="Tailor your fitness to the unique physical demands of your chosen equestrian sport."
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
features={[
{
title: "Polo", description: "Focuses on explosive rotational power and core stability required for long matches and swing mechanics.", imageSrc: "https://img.b2bpic.net/free-photo/people-taking-care-farm_23-2149232275.jpg", titleIconSrc: "", buttonText: "Explore"
},
{
title: "Reining", description: "Develops rapid-fire lower body reflexes and core endurance for precise maneuvers and sliding stops.", imageSrc: "https://img.b2bpic.net/free-photo/beautiful-woman-standing-with-horse_1157-23605.jpg", titleIconSrc: "", buttonText: "Explore"
},
{
title: "Dressage", description: "Emphasizes deep seat stability, hip fluidity, and postural control for subtle communication with the horse.", imageSrc: "https://img.b2bpic.net/free-photo/activity-focused-traveler-adjusts-wintersports-gear-hotel-lobby-preparing-winter-holiday-ski-resort-close-up-guest-holding-checking-snowboard-excitement-snowy-adventure_482257-69543.jpg", titleIconSrc: "", buttonText: "Explore"
}
]}
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardTwo
animationType="slide-up"
@@ -204,6 +229,8 @@ export default function LandingPage() {
label: "About", href: "#about"},
{
label: "Workouts", href: "#features"},
{
label: "Disciplines", href: "#disciplines"},
],
},
{
@@ -229,4 +256,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}