From ade718c3f407b43966bf980f15fc0364dc13eafa Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 5 May 2026 06:40:28 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 333 +++++++---------------------------------------- 1 file changed, 50 insertions(+), 283 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 9398983..f9dfe54 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,15 +2,15 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactSplit from '@/components/sections/contact/ContactSplit'; -import FaqSplitText from '@/components/sections/faq/FaqSplitText'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FaqDouble from '@/components/sections/faq/FaqDouble'; import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree'; -import FooterCard from '@/components/sections/footer/FooterCard'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import PricingCardEight from '@/components/sections/pricing/PricingCardEight'; import TeamCardTwo from '@/components/sections/team/TeamCardTwo'; -import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; +import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; import TextAbout from '@/components/sections/about/TextAbout'; export default function LandingPage() { @@ -31,22 +31,10 @@ export default function LandingPage() { @@ -197,62 +81,11 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} plans={[ - { - id: "basic", - badge: "Beginner", - price: "$150/mo", - subtitle: "Weekly coaching sessions", - buttons: [ - { - text: "Join Now", - href: "#contact", - }, - ], - features: [ - "1 Session/week", - "Basic drills", - "Coach access", - ], - }, - { - id: "pro", - badge: "Popular", - price: "$250/mo", - subtitle: "Complete athletic focus", - buttons: [ - { - text: "Join Now", - href: "#contact", - }, - ], - features: [ - "3 Sessions/week", - "Advanced drills", - "Personal feedback", - "Team jerseys", - ], - }, - { - id: "elite", - badge: "Advanced", - price: "$400/mo", - subtitle: "Performance & mentoring", - buttons: [ - { - text: "Join Now", - href: "#contact", - }, - ], - features: [ - "Unlimited sessions", - "Performance tracking", - "Priority support", - "Monthly reports", - ], - }, + { id: "junior", badge: "K-4", price: "$120/mo", subtitle: "Fundamentals & Play", buttons: [{ text: "Join", href: "#contact" }], features: ["Skill building", "Team fun", "Mentorship"] }, + { id: "senior", badge: "5-8", price: "$180/mo", subtitle: "Focus & Performance", buttons: [{ text: "Join", href: "#contact" }], features: ["Agility drills", "Leadership training", "Coach feedback"] }, ]} - title="Flexible Training Plans" - description="Choose a plan that fits your family's schedule." + title="Grade-Specific Training Plans" + description="Choose the plan that suits your student's stage of development." /> @@ -262,123 +95,57 @@ export default function LandingPage() { textboxLayout="split" gridVariant="four-items-2x2-equal-grid" useInvertedBackground={false} - members={[ - { - id: "c1", - name: "Coach Adam", - role: "Head Athletics", - description: "15+ years experience in track and field.", - imageSrc: "http://img.b2bpic.net/free-photo/closeup-young-bearded-man_273609-16035.jpg", - }, - { - id: "c2", - name: "Coach Elena", - role: "Skills Developer", - description: "Expert in pediatric development and agility.", - imageSrc: "http://img.b2bpic.net/free-photo/view-soccer-players-before-show_23-2150885867.jpg", - }, - { - id: "c3", - name: "Coach Marcus", - role: "Performance Lead", - description: "Former college athlete and mentor.", - imageSrc: "http://img.b2bpic.net/free-photo/diverse-friends-are-going-journey-they-are-planning-using-globe-bright-living-room_1157-47898.jpg", - }, - { - id: "c4", - name: "Coach Sarah", - role: "Team Dynamics", - description: "Specialist in youth team collaborative sport.", - imageSrc: "http://img.b2bpic.net/free-photo/side-view-boy-learning-boxing_23-2150399971.jpg", - }, - ]} - title="Expert Coaching Staff" - description="Mentors with years of professional athletic experience." + members={[]} + title="Meet Our Coaches" + description="Dedicated mentors guiding students to athletic and academic success." />
-
-
-
); -} +} \ No newline at end of file -- 2.49.1 From 7ad1332e032dc0b49c918e9e7349122b508c9457 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 5 May 2026 06:40:28 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index d2ffc19..58ae6c1 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f5f5f5; - --card: #ffffff; - --foreground: #1c1c1c; - --primary-cta: #1f3251; - --primary-cta-text: #f5f5f5; + --background: #fafffb; + --card: #f7fffa; + --foreground: #001a0a; + --primary-cta: #0a7039; + --primary-cta-text: #ffffff; --secondary-cta: #ffffff; - --secondary-cta-text: #1c1c1c; - --accent: #15479c; - --background-accent: #a8cce8; + --secondary-cta-text: #1e1b18; + --accent: #a8d9be; + --background-accent: #6bbf8e; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1