Merge version_3 into main #4

Merged
bender merged 2 commits from version_3 into main 2026-05-05 06:42:53 +00:00
2 changed files with 60 additions and 4 deletions

56
src/app/about/page.tsx Normal file
View File

@@ -0,0 +1,56 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import TextAbout from '@/components/sections/about/TextAbout';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import ReactLenis from "lenis/react";
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="mediumSmall"
sizing="mediumSizeLargeTitles"
background="blurBottom"
cardStyle="gradient-radial"
primaryButtonStyle="double-inset"
secondaryButtonStyle="glass"
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "About", id: "/about" },
{ name: "Programs", id: "/#features" },
{ name: "Pricing", id: "/#pricing" },
{ name: "Contact", id: "/#contact" },
]}
brandName="Midnimo Athletics"
/>
</div>
<div id="about" data-section="about" className="py-24">
<TextAbout
useInvertedBackground={false}
title="Our Mission at Midnimo Athletics"
tag="About Us"
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Midnimo Athletics"
columns={[
{ title: "Programs", items: [{ label: "K-4 Fundamentals", href: "/#features" }, { label: "5-8 Performance", href: "/#features" }] },
{ title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Contact", href: "/#contact" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -31,7 +31,7 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "About", id: "#about" },
{ name: "About", id: "/about" },
{ name: "Programs", id: "#features" },
{ name: "Pricing", id: "#pricing" },
{ name: "Contact", id: "#contact" },
@@ -55,7 +55,7 @@ export default function LandingPage() {
<TextAbout
useInvertedBackground={false}
title="Empowering Somali Youth Through Sport"
buttons={[{ text: "Learn More", href: "#contact" }]}
buttons={[{ text: "Learn More", href: "/about" }]}
/>
</div>
@@ -143,11 +143,11 @@ export default function LandingPage() {
logoText="Midnimo Athletics"
columns={[
{ title: "Programs", items: [{ label: "K-4 Fundamentals", href: "#" }, { label: "5-8 Performance", href: "#" }] },
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Contact", href: "#" }] },
{ title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Contact", href: "#contact" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}