5 Commits

Author SHA1 Message Date
7efc4f36aa Update src/app/globals.css 2026-01-23 16:16:44 +00:00
a4c909d39b Update src/app/page.tsx 2026-01-23 16:14:05 +00:00
f58898a1c0 Update src/app/layout.tsx 2026-01-23 16:14:04 +00:00
67dde7c969 Update src/app/globals.css 2026-01-23 16:14:03 +00:00
e2abb6fb49 Update src/app/blog/page.tsx 2026-01-23 16:14:02 +00:00
4 changed files with 22 additions and 21 deletions

View File

@@ -55,7 +55,8 @@ export default function BlogPage() {
const url = `${apiUrl}/posts/${projectId}?status=published`; const url = `${apiUrl}/posts/${projectId}?status=published`;
const response = await fetch(url, { const response = await fetch(url, {
method: "GET", headers: { method: "GET", headers: {
"Content-Type": "application/json"}, "Content-Type": "application/json"
},
}); });
if (response.ok) { if (response.ok) {
@@ -89,7 +90,7 @@ export default function BlogPage() {
borderRadius="rounded" borderRadius="rounded"
contentWidth="medium" contentWidth="medium"
sizing="mediumLargeSizeLargeTitles" sizing="mediumLargeSizeLargeTitles"
background="floatingGradient" background="none"
cardStyle="gradient-mesh" cardStyle="gradient-mesh"
primaryButtonStyle="inset-glow" primaryButtonStyle="inset-glow"
secondaryButtonStyle="glass" secondaryButtonStyle="glass"
@@ -154,4 +155,4 @@ export default function BlogPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -4,21 +4,21 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
/* --background: #f5f5f5;; /* --background: #ffffff;;
--card: #ffffff;; --card: #f9f9f9;;
--foreground: #1c1c1c;; --foreground: #120006e6;;
--primary-cta: #e63946;; --primary-cta: #e63946;;
--secondary-cta: #ffffff;; --secondary-cta: #ffffff;;
--accent: #e63946;; --accent: #f5c4c7;;
--background-accent: #e8a8b6;; */ --background-accent: #f09199;; */
--background: #f5f5f5;; --background: #ffffff;;
--card: #ffffff;; --card: #f9f9f9;;
--foreground: #1c1c1c;; --foreground: #120006e6;;
--primary-cta: #e63946;; --primary-cta: #e63946;;
--secondary-cta: #ffffff;; --secondary-cta: #ffffff;;
--accent: #e63946;; --accent: #f5c4c7;;
--background-accent: #e8a8b6;; --background-accent: #f09199;;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);

View File

@@ -1263,4 +1263,4 @@ export default function RootLayout({
</ServiceWrapper> </ServiceWrapper>
</html> </html>
); );
} }

View File

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