Merge version_1 into main #7

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

View File

@@ -2,11 +2,9 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import ContactText from '@/components/sections/contact/ContactText';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import LegalSection from '@/components/legal/LegalSection';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import Link from "next/link";
export default function ContactPage() {
return (
@@ -27,11 +25,6 @@ export default function ContactPage() {
<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"
@@ -39,22 +32,10 @@ export default function ContactPage() {
</div>
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={false}
<ContactText
text="Find Us: Visit our boutique in the heart of Jodhpur."
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: { items: ["Mon-Sat: 10:00 AM - 8:00 PM", "Sunday: By appointment only"] } },
]}
useInvertedBackground={false}
/>
</div>
@@ -63,8 +44,7 @@ export default function ContactPage() {
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" }] },
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Contact", href: "/contact" }] },
]}
/>
</div>