Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #3.
This commit is contained in:
2026-05-09 18:43:40 +00:00
2 changed files with 33 additions and 17 deletions

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>
);

View File

@@ -4,28 +4,32 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import ContactText from '@/components/sections/contact/ContactText';
export default function ContactPage() {
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" />
<ContactSplit
tag="Contact Us"
title="Get in Touch"
description="Whether you have questions about our scents or just want to share your thoughts, our doors are always open."
<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="contact" data-section="contact">
<ContactText
text="Get in Touch"
background={{ variant: "rotated-rays-static" }}
imageSrc="http://img.b2bpic.net/free-photo/front-view-light-bottle-with-golden-cap-isolated-white-floor_140725-11640.jpg"
/>
<FooterBaseReveal
useInvertedBackground={false}
/>
</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>
);