Update src/app/about/page.tsx

This commit is contained in:
2026-05-09 18:43:37 +00:00
parent db5b0d986e
commit d169b1034b

View File

@@ -8,23 +8,35 @@ import SplitAbout from '@/components/sections/about/SplitAbout';
export default function AboutPage() {
return (
<ThemeProvider>
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<NavbarLayoutFloatingOverlay navItems={[{name: 'Home', id: '/'}, {name: 'Collections', id: '/products'}, {name: 'Our Story', id: '/about'}, {name: 'Contact', id: '/contact'}]} brandName="Aura" />
<SplitAbout
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay navItems={[{name: 'Home', id: '/'}, {name: 'Collections', id: '/products'}, {name: 'Our Story', id: '/about'}, {name: 'Contact', id: '/contact'}]} brandName="Aura" />
</div>
<div id="about" data-section="about">
<SplitAbout
title="Our Heritage"
description="Crafting scent with intent and history. Aura is the convergence of traditional botanicals and modern luxury. Every product tells a story of careful curation and respect for nature."
imageSrc="http://img.b2bpic.net/free-photo/front-view-hands-holding-serum_23-2149406818.jpg"
textboxLayout="split"
/>
<FooterBaseReveal
useInvertedBackground={false}
bulletPoints={[
{ title: "Heritage", description: "Tradition meets modern luxury." },
{ title: "Curation", description: "Hand-selected botanicals." }
]}
mediaAnimation="blur-reveal"
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="Aura"
columns={[
{ title: "Store", items: [{ label: "Shop All", href: "/products" }, { label: "About Us", href: "/about" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "/privacy" }, { label: "Terms of Use", href: "/terms" }] },
]}
copyrightText="© 2024 Aura Perfumes."
/>
/>
</div>
</ReactLenis>
</ThemeProvider>
);