Update src/app/page.tsx

This commit is contained in:
2026-01-23 16:14:05 +00:00
parent f58898a1c0
commit a4c909d39b

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
@@ -21,7 +21,7 @@ export default function LandingPage() {
borderRadius="rounded"
contentWidth="medium"
sizing="mediumLargeSizeLargeTitles"
background="floatingGradient"
background="none"
cardStyle="gradient-mesh"
primaryButtonStyle="inset-glow"
secondaryButtonStyle="glass"
@@ -68,7 +68,7 @@ export default function LandingPage() {
<div id="about" data-section="about">
<TextAbout
title="Empowering the next generation of basketball champions through elite coaching, personalized training programs, and a commitment to athletic excellence that transforms talented players into college-ready athletes and future NBA prospects."
useInvertedBackground="invertDefault"
useInvertedBackground="noInvert"
buttons={[
{ text: "Learn Our Methodology", href: "#programs" }
]}
@@ -134,7 +134,7 @@ export default function LandingPage() {
id: "4", value: "30+", description: "NBA summer league participants and professional prospects developed"
}
]}
useInvertedBackground="invertDefault"
useInvertedBackground="noInvert"
/>
</div>
@@ -201,7 +201,7 @@ export default function LandingPage() {
}
]}
textboxLayout="default"
useInvertedBackground="invertDefault"
useInvertedBackground="noInvert"
/>
</div>
@@ -250,7 +250,7 @@ export default function LandingPage() {
name: "message", placeholder: "Tell us about your basketball goals and current level", rows: 5,
required: true
}}
useInvertedBackground="invertDefault"
useInvertedBackground="noInvert"
imageSrc="https://img.b2bpic.net/free-photo/front-view-young-man-playing-basketball-outside_23-2148767564.jpg"
imageAlt="Basketball training facility"
mediaPosition="right"
@@ -272,4 +272,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}