Update src/app/contact/page.tsx

This commit is contained in:
2026-05-11 16:25:03 +00:00
parent 6a09728262
commit fd45f12d80

View File

@@ -2,10 +2,9 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function ContactPage() {
return (
@@ -22,53 +21,44 @@ export default function ContactPage() {
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "About Us", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="WorkNest Interiors"
button={{ text: "Contact Now", href: "/contact" }}
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "About Us", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="WorkNest Interiors"
button={{ text: "Contact Now", href: "/contact" }}
/>
</div>
<div id="contact-section" data-section="contact-section">
<ContactCenter
useInvertedBackground={true}
background={{ variant: "plain" }}
tag="Contact Us"
title="Get in Touch"
description="Have questions about your workspace? Reach out to info@worknest.in or follow our journey on Instagram."
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
tag="Get In Touch"
title="How can we help you?"
description="Reach out to our expert team for inquiries about ergonomic setups, bulk orders, or support."
background={{ variant: "radial-gradient" }}
inputPlaceholder="Enter your email"
buttonText="Send Message"
termsText="By sending a message, you agree to our contact policy."
onSubmit={(email) => console.log("Form submitted for:", email)}
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
useInvertedBackground={false}
background={{ variant: "plain" }}
tag="Visit Us"
title="Our Showroom"
description="Come experience our products in person."
imageSrc="http://img.b2bpic.net/free-photo/modern-office-space-with-futuristic-decor-furniture_23-2151797747.jpg"
mediaAnimation="slide-up"
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{ title: "Brand", items: [{ label: "WorkNest Interiors", href: "/" }] },
{ title: "Navigation", items: [{ label: "Products", href: "/products" }, { label: "About Us", href: "/about" }] },
{ title: "Get In Touch", items: [{ label: "info@worknest.in", href: "mailto:info@worknest.in" }] },
]}
bottomLeftText="© 2024 WorkNest Interiors. All rights reserved."
bottomRightText="Bangalore, India"
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{ title: "Brand", items: [{ label: "WorkNest Interiors", href: "/" }] },
{ title: "Navigation", items: [{ label: "Products", href: "/products" }, { label: "About Us", href: "/about" }] },
{ title: "Get In Touch", items: [{ label: "info@worknest.in", href: "mailto:info@worknest.in" }] },
]}
bottomLeftText="© 2024 WorkNest Interiors. All rights reserved."
bottomRightText="Bangalore, India"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}