Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a4c909d39b | |||
| f58898a1c0 | |||
| 67dde7c969 | |||
| e2abb6fb49 |
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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: #ffffff;;
|
||||||
--foreground: #1c1c1c;;
|
--foreground: #000000;;
|
||||||
--primary-cta: #e63946;;
|
--primary-cta: #000000;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #ffffff;;
|
||||||
--accent: #e63946;;
|
--accent: #e2e2e2;;
|
||||||
--background-accent: #e8a8b6;; */
|
--background-accent: #f5f5f5;; */
|
||||||
|
|
||||||
--background: #f5f5f5;;
|
--background: #ffffff;;
|
||||||
--card: #ffffff;;
|
--card: #ffffff;;
|
||||||
--foreground: #1c1c1c;;
|
--foreground: #000000;;
|
||||||
--primary-cta: #e63946;;
|
--primary-cta: #000000;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #ffffff;;
|
||||||
--accent: #e63946;;
|
--accent: #e2e2e2;;
|
||||||
--background-accent: #e8a8b6;;
|
--background-accent: #f5f5f5;;
|
||||||
|
|
||||||
/* 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);
|
||||||
|
|||||||
@@ -1263,4 +1263,4 @@ export default function RootLayout({
|
|||||||
</ServiceWrapper>
|
</ServiceWrapper>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user