Merge version_1 into main #4

Merged
bender merged 1 commits from version_1 into main 2026-04-23 17:17:36 +00:00

View File

@@ -22,51 +22,51 @@ export default function ContactPage() {
headingFontWeight="bold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "Formal", id: "/formal" },
{ name: "Casual", id: "/casual" },
{ name: "Ethnic", id: "/ethnic" },
{ name: "About", id: "/about" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" },
]}
brandName="Sartorial Jodhpur"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "Formal", id: "/formal" },
{ name: "Casual", id: "/casual" },
{ name: "Ethnic", id: "/ethnic" },
{ name: "About", id: "/about" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" },
]}
brandName="Sartorial Jodhpur"
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={false}
background={{ variant: "plain" }}
tag="Get in Touch"
title="Find Us"
description="Visit our boutique in the heart of Jodhpur."
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={false}
background={{ variant: "plain" }}
tag="Get in Touch"
title="Find Us"
description="Visit our boutique in the heart of Jodhpur."
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="section"
title="Business Information"
sections={[
{ heading: "Hours of Operation", content: { type: "list", items: ["Mon-Sat: 10:00 AM - 8:00 PM", "Sunday: By appointment only"] } },
]}
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="section"
title="Business Information"
sections={[
{ heading: "Hours of Operation", content: { items: ["Mon-Sat: 10:00 AM - 8:00 PM", "Sunday: By appointment only"] } },
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/dark-blue-paint-with-shade-background_53876-128599.jpg"
logoText="Sartorial Jodhpur"
columns={[
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }] },
{ title: "Categories", items: [{ label: "Formal", href: "/formal" }, { label: "Casual", href: "/casual" }] },
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/dark-blue-paint-with-shade-background_53876-128599.jpg"
logoText="Sartorial Jodhpur"
columns={[
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }] },
{ title: "Categories", items: [{ label: "Formal", href: "/formal" }, { label: "Casual", href: "/casual" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);