Merge version_2 into main #7

Merged
bender merged 1 commits from version_2 into main 2026-04-15 00:46:21 +00:00

View File

@@ -6,6 +6,8 @@ import ContactSplit from '@/components/sections/contact/ContactSplit';
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
@@ -39,6 +41,27 @@ export default function LandingPage() {
/>
</div>
<div id="hero-carousel" data-section="hero-carousel">
<HeroBillboardCarousel
title="Experience The Links"
description="Discover our world-class facilities and vibrant social scene."
buttons={[{ text: "Learn More", href: "/about" }]}
background={{ variant: "sparkles-gradient" }}
mediaItems={[{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CN5J5aB7H2f5V3HwgOEbvbfU14/uploaded-1776213964875-5j95v0wc.jpg", imageAlt: "Golf course at sunset" }]}
/>
</div>
<div id="hero-billboard" data-section="hero-billboard">
<HeroBillboard
title="Your Next Great Game"
description="Join us for community fun, competitive rounds, and relaxation."
buttons={[{ text: "Book Now", href: "/play" }]}
background={{ variant: "sparkles-gradient" }}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CN5J5aB7H2f5V3HwgOEbvbfU14/uploaded-1776213964875-5j95v0wc.jpg"
imageAlt="Golf course view"
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboardScroll
background={{ variant: "sparkles-gradient" }}
@@ -138,4 +161,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}