Update src/app/page.tsx
This commit is contained in:
223
src/app/page.tsx
223
src/app/page.tsx
@@ -28,22 +28,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Teams",
|
||||
id: "/teams",
|
||||
},
|
||||
{
|
||||
name: "Programs",
|
||||
id: "/programs",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Teams", id: "/teams" },
|
||||
{ name: "Programs", id: "/programs" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Youth Soccer Club"
|
||||
/>
|
||||
@@ -51,99 +39,42 @@ export default function LandingPage() {
|
||||
|
||||
<div id="home-hero" data-section="home-hero">
|
||||
<HeroBillboardTestimonial
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
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.",
|
||||
role: "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: "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.",
|
||||
role: "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: "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.",
|
||||
role: "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: "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.",
|
||||
role: "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: "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.",
|
||||
role: "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",
|
||||
},
|
||||
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",
|
||||
},
|
||||
{ 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",
|
||||
},
|
||||
{ type: "text", text: "Inclusive" },
|
||||
{ type: "text", text: "Community-Focused" },
|
||||
{ type: "text", text: "Professional" },
|
||||
{ type: "text", text: "Fun" },
|
||||
{ type: "text", text: "Dedicated" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -154,18 +85,9 @@ export default function LandingPage() {
|
||||
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",
|
||||
},
|
||||
{ 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"
|
||||
@@ -182,19 +104,9 @@ export default function LandingPage() {
|
||||
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: "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",
|
||||
},
|
||||
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>
|
||||
@@ -208,35 +120,13 @@ export default function LandingPage() {
|
||||
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: "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",
|
||||
},
|
||||
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>
|
||||
@@ -244,18 +134,11 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
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",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Get Started", href: "/contact" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -264,29 +147,15 @@ export default function LandingPage() {
|
||||
logoText="Youth Soccer Club"
|
||||
columns={[
|
||||
{
|
||||
title: "Club",
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Teams",
|
||||
href: "/teams",
|
||||
},
|
||||
title: "Club", items: [
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Teams", href: "/teams" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "/faq",
|
||||
},
|
||||
title: "Support", items: [
|
||||
{ label: "Contact", href: "/contact" },
|
||||
{ label: "FAQ", href: "/faq" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
@@ -295,4 +164,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user