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