|
|
|
|
@@ -1,54 +1,53 @@
|
|
|
|
|
"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 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="gradient-radial"
|
|
|
|
|
primaryButtonStyle="double-inset"
|
|
|
|
|
secondaryButtonStyle="glass"
|
|
|
|
|
headingFontWeight="extrabold"
|
|
|
|
|
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">
|
|
|
|
|
<NavbarStyleCentered
|
|
|
|
|
<NavbarLayoutFloatingInline
|
|
|
|
|
navItems={[
|
|
|
|
|
{ name: "About", id: "/about" },
|
|
|
|
|
{ name: "Programs", id: "/#features" },
|
|
|
|
|
{ name: "Pricing", id: "/#pricing" },
|
|
|
|
|
{ name: "Contact", id: "/#contact" },
|
|
|
|
|
{ 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">
|
|
|
|
|
<TextAbout
|
|
|
|
|
<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">
|
|
|
|
|
<FooterBaseCard
|
|
|
|
|
<FooterCard
|
|
|
|
|
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>
|
|
|
|
|
|