diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
new file mode 100644
index 0000000..8bd7067
--- /dev/null
+++ b/src/app/about/page.tsx
@@ -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 (
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 4fcfa37..466f2b7 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -31,7 +31,7 @@ export default function LandingPage() {
@@ -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" }] },
]}
/>
);
-}
\ No newline at end of file
+}