From 41ad22d33f92b4a9bd46b9c4f6c1e664b7796284 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 06:47:29 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bd845ad..33feb6f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -27,7 +27,8 @@ export const metadata: Metadata = { openGraph: { title: "Apex Sports - Elite Athletic Performance Training", description: "Premium athletic training with AI analytics, elite coaching, and state-of-the-art facilities. Transform your performance today.", type: "website", siteName: "Apex Sports", images: [ { - url: "http://img.b2bpic.net/free-photo/full-length-portrait-half-naked-fit-african-sportsman_171337-9446.jpg", alt: "Elite athletic training at Apex Sports"}, + url: "http://img.b2bpic.net/free-photo/full-length-portrait-half-naked-fit-african-sportsman_171337-9446.jpg", alt: "Elite athletic training at Apex Sports" + }, ], }, twitter: { @@ -1419,4 +1420,4 @@ export default function RootLayout({ ); -} +} \ No newline at end of file -- 2.49.1 From 3ec05338f0e25e69162e25412d2dba29b41690a1 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 06:47:30 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 50 +++++++++++++++++++++++++++++++----------------- 1 file changed, 32 insertions(+), 18 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 03270f3..2b13086 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,7 @@ import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCar import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; -import { Award, Crown, Sparkles, Star, TrendingUp, Zap } from 'lucide-react'; +import { Award, Crown, Sparkles, Star, TrendingUp, Zap, Users, CheckCircle } from 'lucide-react'; export default function LandingPage() { return ( @@ -37,7 +37,8 @@ export default function LandingPage() { { name: "Contact", id: "contact" }, ]} button={{ - text: "Join Now", href: "#pricing"}} + text: "Join Now", href: "#pricing" + }} /> @@ -64,7 +65,8 @@ export default function LandingPage() { @@ -201,8 +214,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={true} names={[ - "Nike", "Adidas", "Gatorade", "Fitbit", "Lululemon", "Under Armour", "Red Bull"]} - speed={50} + "Nike", "Adidas", "Gatorade", "Fitbit", "Lululemon", "Under Armour", "Red Bull" + ]} + speed={40} showCard={true} /> @@ -240,4 +254,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1 From 024b5c786e5518c1f7d7b086c020759f31ce7876 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 06:47:30 +0000 Subject: [PATCH 3/4] Update src/app/styles/base.css --- src/app/styles/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index 741ed2e..34aea07 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-open-sans), sans-serif; + font-family: var(--font-inter), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-open-sans), sans-serif; + font-family: var(--font-inter), sans-serif; } -- 2.49.1 From 540e36231e6a0f82da8703ac475e5f8b0627c2af Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 06:47:31 +0000 Subject: [PATCH 4/4] Update src/app/styles/variables.css --- src/app/styles/variables.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index cbce47d..f28aa18 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #0a0a0a; - --card: #1a1a1a; - --foreground: #fff5f5e6; - --primary-cta: #ff7a7a; + --background: #f5f5f5; + --card: #ffffff; + --foreground: #1c1c1c; + --primary-cta: #1f514c; --primary-cta-text: #0a0a0a; - --secondary-cta: #1a1a1a; + --secondary-cta: #ffffff; --secondary-cta-text: #fff5f5e6; - --accent: #737373; - --background-accent: #737373; + --accent: #35c18b; + --background-accent: #ecebe4; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1