Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-04-21 05:40:31 +00:00

View File

@@ -2,11 +2,11 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import BlogCardTwo from '@/components/sections/blog/BlogCardTwo';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import BlogCardThree from '@/components/sections/blog/BlogCardThree';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
@@ -125,7 +125,7 @@ export default function LandingPage() {
</div>
<div id="news" data-section="news">
<BlogCardTwo
<BlogCardThree
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
@@ -166,24 +166,27 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
background={{ variant: "radial-gradient" }}
<ContactSplit
tag="Contact Us"
title="Get In Touch"
description="Have questions about our facilities? We'd love to hear from you."
buttons={[{ text: "Contact Us Now", href: "mailto:enquiries@stadium2000.co.nz" }]}
background="sparkles-gradient"
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/smiling-woman-pointing-up-looking-camera_23-2148240409.jpg"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
<FooterMedia
logoText="Stadium 2000"
leftLink={{ text: "14 Kinross Street, Blenheim", href: "#" }}
rightLink={{ text: "Phone: +64 03 577 8300", href: "tel:+64035778300" }}
imageSrc="http://img.b2bpic.net/free-photo/swimmer-jumping-into-swimming-pool_23-2148858288.jpg"
columns={[
{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "Join", href: "#pricing" }] },
{ title: "Contact", items: [{ label: "14 Kinross Street", href: "#" }, { label: "Phone: 03 577 8300", href: "tel:035778300" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}