Merge version_2 into main #3

Merged
bender merged 2 commits from version_2 into main 2026-04-20 05:16:40 +00:00
2 changed files with 52 additions and 22 deletions

View File

@@ -7,22 +7,37 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
export default function BrandsPage() {
return (
<ThemeProvider>
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Courses", id: "courses" },
{ name: "Brands", id: "/brands" },
{ name: "Partnerships", id: "/partnerships" },
]}
brandName="GrowthLab"
/>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Courses", id: "courses" },
{ name: "Brands", id: "/brands" },
{ name: "Partnerships", id: "/partnerships" },
]}
brandName="GrowthLab"
/>
</div>
<main className="min-h-screen pt-24 px-6 flex flex-col items-center justify-center">
<h1 className="text-4xl font-bold mb-4">Our Brands</h1>
<p>Learn more about the brands we work with.</p>
</main>
<FooterBaseReveal logoText="GrowthLab" columns={[]} />
<div id="footer" data-section="footer">
<FooterBaseReveal logoText="GrowthLab" columns={[]} leftLink={{text: "Home", href: "/"}} rightLink={{text: "Contact", href: "/contact"}} />
</div>
</ReactLenis>
</ThemeProvider>
);

View File

@@ -7,22 +7,37 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
export default function PartnershipsPage() {
return (
<ThemeProvider>
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Courses", id: "courses" },
{ name: "Brands", id: "/brands" },
{ name: "Partnerships", id: "/partnerships" },
]}
brandName="GrowthLab"
/>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Courses", id: "courses" },
{ name: "Brands", id: "/brands" },
{ name: "Partnerships", id: "/partnerships" },
]}
brandName="GrowthLab"
/>
</div>
<main className="min-h-screen pt-24 px-6 flex flex-col items-center justify-center">
<h1 className="text-4xl font-bold mb-4">Partnerships</h1>
<p>Discover how to partner with GrowthLab.</p>
</main>
<FooterBaseReveal logoText="GrowthLab" columns={[]} />
<div id="footer" data-section="footer">
<FooterBaseReveal logoText="GrowthLab" columns={[]} leftLink={{text: "Home", href: "/"}} rightLink={{text: "Contact", href: "/contact"}} />
</div>
</ReactLenis>
</ThemeProvider>
);