9 Commits

Author SHA1 Message Date
15ffa02a33 Update src/app/about/page.tsx 2026-05-05 06:45:13 +00:00
f99d88fe95 Update src/app/layout.tsx 2026-05-05 06:44:48 +00:00
c0cd60cef2 Update src/app/about/page.tsx 2026-05-05 06:44:48 +00:00
43f544a8d7 Update src/app/about/page.tsx 2026-05-05 06:44:21 +00:00
665f5afdb6 Merge version_3 into main
Merge version_3 into main
2026-05-05 06:42:53 +00:00
06497ee704 Update src/app/page.tsx 2026-05-05 06:42:50 +00:00
ce0fb0bfb7 Add src/app/about/page.tsx 2026-05-05 06:42:50 +00:00
9684f15049 Merge version_2 into main
Merge version_2 into main
2026-05-05 06:40:58 +00:00
17e44b6fab Merge version_2 into main
Merge version_2 into main
2026-05-05 06:40:31 +00:00
3 changed files with 61 additions and 6 deletions

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

@@ -0,0 +1,55 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import SplitAbout from '@/components/sections/about/SplitAbout';
import FooterCard from '@/components/sections/footer/FooterCard';
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="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Midnimo Athletics"
button={{ text: "Get Started" }}
/>
</div>
<div id="about" data-section="about" className="py-24">
<SplitAbout
useInvertedBackground={false}
title="Our Mission at Midnimo Athletics"
tag="About Us"
description="Midnimo Athletics is a dedicated after-school coaching program specifically designed for students from Kindergarten through 8th grade. Our mission is to build character, confidence, and agility in our youth by providing high-quality athletic training that fosters both personal growth and athletic excellence. We pride ourselves on creating an inclusive environment where every young athlete is supported in their unique development stage."
textboxLayout="default"
bulletPoints={[]}
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="Midnimo Athletics"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -11,8 +11,8 @@ import { Open_Sans } from "next/font/google";
export const metadata: Metadata = {
title: 'Midnimo Athletics | Elite Youth Coaching',
description: 'Premium after-school athletics program focused on building confidence and agility.',
title: 'About Us | Midnimo Athletics',
description: 'Learn about Midnimo Athletics, our mission, and our programs for K-8 students.',
openGraph: {
"title": "Midnimo Athletics",
"description": "Transforming youth through sports.",

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>
);
}
}