From 5fa5984e677242b9e00dbd6dbe7626a12c88f92c Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 11 Jun 2026 20:58:10 +0000 Subject: [PATCH] Add src/app/about/page.tsx --- src/app/about/page.tsx | 66 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 src/app/about/page.tsx diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..d5fede6 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,66 @@ +"use client"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import SplitAbout from '@/components/sections/about/SplitAbout'; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; + +export default function AboutPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Products", id: "/products" }, + { name: "About Us", id: "/about" }, + { name: "Contact", id: "/contact" }, + { name: "FAQ", id: "/faq" } + ]; + const footerColumns = [ + { items: [{ label: "Urban Bikes", href: "/products" }, { label: "Mountain Bikes", href: "/products" }, { label: "Folding Bikes", href: "/products" }, { label: "Accessories", href: "/products" }] }, + { items: [{ label: "About Us", href: "/about" }, { label: "Our Story", href: "/about" }, { label: "Careers", href: "#" }, { label: "Blog", href: "#" }] }, + { items: [{ label: "FAQ", href: "/faq" }, { label: "Support", href: "/contact" }, { label: "Warranty", href: "#" }, { label: "Privacy Policy", href: "#" }] } + ]; + return ( + + +
+ +
+ +
+ ); +} \ No newline at end of file