Merge version_3 into main #8

Merged
bender merged 2 commits from version_3 into main 2026-04-21 19:45:53 +00:00
2 changed files with 33 additions and 26 deletions

View File

@@ -47,6 +47,7 @@ export default function AboutUsPage() {
]}
imageSrc="http://img.b2bpic.net/free-photo/close-up-seamstress-drawing-with-soap-pink-textile-modern-sewing-workshop_574295-3700.jpg"
imageAlt="Sewing workshop in Portugal"
useInvertedBackground={false}
/>
</div>

View File

@@ -22,34 +22,40 @@ export default function ContactPage() {
headingFontWeight="bold"
>
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/about" },
{ name: "Lookbook", id: "/lookbook" },
{ name: "Contact", id: "/contact" },
]}
brandName="OceanWave"
button={{ text: "Contact", href: "/contact" }}
/>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/about" },
{ name: "Lookbook", id: "/lookbook" },
{ name: "Contact", id: "/contact" },
]}
brandName="OceanWave"
button={{ text: "Contact", href: "/contact" }}
/>
</div>
<ContactCenter
tag="Connect"
title="Let's Talk Waves"
description="Have questions about our sustainable journey or need help with an order? Drop us a line below."
background={{ variant: 'glowing-orb' }}
useInvertedBackground={true}
/>
<div id="contact-section" data-section="contact-section">
<ContactCenter
tag="Connect"
title="Let's Talk Waves"
description="Have questions about our sustainable journey or need help with an order? Drop us a line below."
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={true}
/>
</div>
<FooterCard
logoText="OceanWave"
copyrightText="© 2025 OceanWave Apparel"
socialLinks={[
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
{ icon: Twitter, href: "#", ariaLabel: "Twitter" }
]}
/>
<div id="footer" data-section="footer">
<FooterCard
logoText="OceanWave"
copyrightText="© 2025 OceanWave Apparel"
socialLinks={[
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
{ icon: Twitter, href: "#", ariaLabel: "Twitter" }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);