Add src/app/about/page.tsx

This commit is contained in:
2026-04-19 13:58:08 +00:00
parent fe4310212f
commit ce269c7d51

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

@@ -0,0 +1,45 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import SplitAbout from '@/components/sections/about/SplitAbout';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { Globe } from "lucide-react";
export default function AboutPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/#products" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Aura"
/>
<SplitAbout
title="Our Story"
description="We believe fashion is a universal language, transcending cultures and borders. Our mission is to bring high-end, modern design to style enthusiasts around the globe."
imageSrc="http://img.b2bpic.net/free-photo/full-shot-stylish-woman-wearing-punk-outfit_23-2149267472.jpg"
textboxLayout="split"
bulletPoints={[
{ title: "Quality", description: "Sourcing the finest materials." },
{ title: "Ethics", description: "Fair treatment for all artisans." },
{ title: "Design", description: "Modern and timeless aesthetics." },
]}
/>
<FooterBaseCard
logoText="AURA"
columns={[
{ title: "Shop", items: [{ label: "Streetwear", href: "/#products" }, { label: "Casual", href: "/#products" }] },
{ title: "Support", items: [{ label: "Contact Us", href: "/contact" }, { label: "About Us", href: "/about" }] },
{ title: "Follow Us", items: [{ label: "Instagram", href: "#" }, { label: "TikTok", href: "#" }] },
]}
/>
</ReactLenis>
</ThemeProvider>
);
}