Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-05-23 05:16:23 +00:00

View File

@@ -2,13 +2,14 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
import MediaAbout from '@/components/sections/about/MediaAbout';
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
import ContactText from '@/components/sections/contact/ContactText';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import { ShieldCheck, Zap, Scissors, PaintBucket, Car } from 'lucide-react';
export default function LandingPage() {
return (
@@ -25,142 +26,85 @@ export default function LandingPage() {
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Teams", id: "/teams" },
{ name: "Programs", id: "/programs" },
{ name: "Contact", id: "/contact" },
]}
brandName="Youth Soccer Club"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "#home-hero" },
{ name: "About", id: "#home-about" },
{ name: "Services", id: "#feature" },
{ name: "Pricing", id: "#pricing" },
{ name: "Contact", id: "#contact" }
]}
brandName="Elite Auto Care"
/>
</div>
<div id="home-hero" data-section="home-hero">
<HeroBillboardTestimonial
background={{ variant: "gradient-bars" }}
title="Where Young Athletes Grow and Compete"
description="Join our thriving soccer community. Find your team, register today, and connect with players and coaches who share your passion for the game."
testimonials={[
{
name: "Sarah J.", handle: "Parent", testimonial: "Amazing coaching staff, very supportive environment.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/front-view-three-friends-eating-popcorn-couch_23-2148560768.jpg"},
{
name: "Mark D.", handle: "Parent", testimonial: "My daughter has grown so much in confidence here.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/boy-holding-trophy_1187-1401.jpg"},
{
name: "Emily P.", handle: "Parent", testimonial: "Best youth program in the city, highly recommended.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-father-his-little-son-giving-high-five_171337-16330.jpg"},
{
name: "Tom R.", handle: "Coach", testimonial: "Great community, everyone is dedicated to growth.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-women-holding-cup_23-2148634544.jpg"},
{
name: "Lisa K.", handle: "Parent", testimonial: "Friendly coaches and well-organized practice sessions.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/parents-smiley-boy-together-outside-park_23-2148647742.jpg"},
]}
buttons={[{ text: "Explore Our Teams", href: "/teams" }]}
imageSrc="http://img.b2bpic.net/free-photo/boy-blocking-ball-with-his-hands_23-2147637105.jpg"
imageAlt="Youth soccer action"
avatars={[
{ src: "http://img.b2bpic.net/free-photo/group-female-friends-home-watching-sports-together_23-2150168018.jpg", alt: "Parent" },
{ src: "http://img.b2bpic.net/free-photo/front-view-loyal-confident-football-fans_329181-18580.jpg", alt: "Coach" },
{ src: "http://img.b2bpic.net/free-photo/front-view-friends-playing-cards-home-having-beer_23-2148560722.jpg", alt: "Volunteer" },
{ src: "http://img.b2bpic.net/free-photo/portrait-excited-family-with-son_23-2148392213.jpg", alt: "Parent" },
{ src: "http://img.b2bpic.net/free-photo/close-up-women-team-holding-cup_23-2148634688.jpg", alt: "Coach" },
]}
marqueeItems={[
{ type: "text", text: "Inclusive" },
{ type: "text", text: "Community-Focused" },
{ type: "text", text: "Professional" },
{ type: "text", text: "Fun" },
{ type: "text", text: "Dedicated" },
]}
/>
</div>
<div id="home-hero" data-section="home-hero">
<HeroBillboardGallery
title="Premium Automotive Aesthetic Services"
description="Expert care for your vehicle including detailing, tinting, ceramic coatings, and custom wraps. Protect your investment with professionals who care."
background={{ variant: "gradient-bars" }}
mediaItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/car-detailing-studio-with-luxury-cars_23-2149306440.jpg", imageAlt: "Car detailing" },
{ imageSrc: "http://img.b2bpic.net/free-photo/man-tinting-car-windows_23-2149306458.jpg", imageAlt: "Window tinting" },
{ imageSrc: "http://img.b2bpic.net/free-photo/car-wrapping-process_23-2149306488.jpg", imageAlt: "Vehicle wrap" }
]}
/>
</div>
<div id="home-about" data-section="home-about">
<MetricSplitMediaAbout
useInvertedBackground={true}
title="Fostering Athletic Excellence"
description="Our club emphasizes holistic development, focusing on sportsmanship, tactical skill, and life lessons learned on the field."
metrics={[
{ value: "15+", title: "Active Teams" },
{ value: "200+", title: "Players" },
{ value: "10+", title: "Professional Coaches" },
]}
imageSrc="http://img.b2bpic.net/free-photo/football-trainer-teaching-his-pupils_23-2149708039.jpg"
mediaAnimation="slide-up"
metricsAnimation="blur-reveal"
/>
</div>
<div id="home-about" data-section="home-about">
<MediaAbout
title="Professional Passion"
description="With years of experience, we transform everyday vehicles into head-turning machines while ensuring long-term protection against the elements."
imageSrc="http://img.b2bpic.net/free-photo/detailing-professional-working-car_23-2149306495.jpg"
mediaAnimation="slide-up"
useInvertedBackground={true}
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardMedia
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Club Values"
description="Why choosing our club is the right decision for your child's growth."
features={[
{
id: "v1", title: "Sportsmanship", description: "Winning with integrity.", tag: "Core Value", imageSrc: "http://img.b2bpic.net/free-photo/happy-kid-playing-outdoors_23-2149604323.jpg"},
{
id: "v2", title: "Holistic Growth", description: "Development on and off the field.", tag: "Core Value", imageSrc: "http://img.b2bpic.net/free-photo/kids-playing-soccer-football_1150-3901.jpg"},
]}
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardEight
title="Our Premium Services"
description="Comprehensive solutions to maintain your vehicle's pristine condition."
textboxLayout="default"
features={[
{ title: "Car Detailing", description: "Deep cleaning and restoration for your interior and exterior.", imageSrc: "http://img.b2bpic.net/free-photo/car-detailing-studio_23-2149306470.jpg" },
{ title: "Window Tinting", description: "High-quality heat rejection films for comfort and style.", imageSrc: "http://img.b2bpic.net/free-photo/tinted-car-windows_23-2149306433.jpg" },
{ title: "Ceramic Coating", description: "Ultimate paint protection with extreme hydrophobic gloss.", imageSrc: "http://img.b2bpic.net/free-photo/ceramic-coating-application_23-2149306499.jpg" },
{ title: "Vehicle Wraps", description: "Change your look with precision vinyl wrap application.", imageSrc: "http://img.b2bpic.net/free-photo/car-wrap-design_23-2149306461.jpg" }
]}
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardNine
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Seasonal Packages"
description="We offer flexible plans to fit your schedule."
plans={[
{
id: "s1", title: "Fall Season", price: "$250", period: "/ season", features: ["12 games", "Weekly Training"],
button: { text: "Select", href: "#" },
imageSrc: "http://img.b2bpic.net/free-photo/father-daughter-playing-soccer_23-2148440734.jpg"},
{
id: "s2", title: "Spring Season", price: "$250", period: "/ season", features: ["12 games", "Weekly Training"],
button: { text: "Select", href: "#" },
imageSrc: "http://img.b2bpic.net/free-photo/family-with-little-son-playing-football_1157-34173.jpg"},
]}
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardEight
title="Pricing Packages"
description="Clear, professional pricing for every service level."
plans={[
{ id: "p1", badge: "Essential", price: "$199", subtitle: "Complete interior/exterior detail", features: ["Hand wash", "Vacuum", "Wax protection", "Tire dressing"], buttons: [{ text: "Book Now", href: "#contact" }] },
{ id: "p2", badge: "Premium", price: "$599", subtitle: "Ceramic coating application", features: ["Decontamination", "Paint prep", "2-Year ceramic coat", "Interior detail"], buttons: [{ text: "Book Now", href: "#contact" }] }
]}
textboxLayout="split"
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
background={{ variant: "plain" }}
tag="Join Now"
title="Ready to Start Your Journey?"
description="Register today and become part of our local soccer family."
buttons={[{ text: "Get Started", href: "/contact" }]}
/>
</div>
<div id="contact" data-section="contact">
<ContactText
text="Ready to transform your car? Reach out for a free consultation today!"
background={{ variant: "sparkles-gradient" }}
buttons={[{ text: "Get a Quote", href: "#" }]}
/>
</div>
<div id="home-footer" data-section="home-footer">
<FooterBaseCard
logoText="Youth Soccer Club"
columns={[
{
title: "Club", items: [
{ label: "About", href: "/about" },
{ label: "Teams", href: "/teams" },
],
},
{
title: "Support", items: [
{ label: "Contact", href: "/contact" },
{ label: "FAQ", href: "/faq" },
],
},
]}
/>
</div>
<div id="home-footer" data-section="home-footer">
<FooterLogoEmphasis
logoText="Elite Auto Care"
columns={[
{ items: [{ label: "Home", href: "#home-hero" }, { label: "Services", href: "#feature" }] },
{ items: [{ label: "Pricing", href: "#pricing" }, { label: "Contact", href: "#contact" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);