Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-04-07 18:53:06 +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,27 @@ 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"
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 +228,8 @@ export default function LandingPage() {
label: "About", href: "#about"},
{
label: "Workouts", href: "#features"},
{
label: "Disciplines", href: "#disciplines"},
],
},
{
@@ -229,4 +255,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}