3 Commits

Author SHA1 Message Date
e5ee48cc07 Update src/app/contact/page.tsx 2026-04-16 18:36:44 +00:00
33e28812d7 Merge version_20 into main
Merge version_20 into main
2026-04-16 18:32:02 +00:00
e51edb2ab9 Merge version_20 into main
Merge version_20 into main
2026-04-16 18:31:38 +00:00

View File

@@ -3,7 +3,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ContactCenter from '@/components/sections/contact/ContactCenter'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function ContactPage() { export default function ContactPage() {
@@ -25,10 +25,10 @@ export default function ContactPage() {
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
navItems={[ navItems={[
{ name: "About", id: "/about"}, { name: "About", id: "/about"},
{ name: "Services", id: "services"}, { name: "Services", id: "/#services"},
{ name: "Team", id: "team"}, { name: "Team", id: "/#team"},
{ name: "Testimonials", id: "testimonials"}, { name: "Testimonials", id: "/#testimonials"},
{ name: "FAQ", id: "faq"}, { name: "FAQ", id: "/#faq"},
{ name: "Contact", id: "/contact"}, { name: "Contact", id: "/contact"},
]} ]}
brandName="Lackawanna" brandName="Lackawanna"
@@ -36,12 +36,17 @@ export default function ContactPage() {
</div> </div>
<div id="contact-content" className="pt-32 pb-24"> <div id="contact-content" className="pt-32 pb-24">
<ContactCenter <ContactSplitForm
tag="Visit Us"
title="Ready for your next cut?" title="Ready for your next cut?"
description="Stop by our Morristown shop to experience the Lackawanna difference." description="Stop by our Morristown shop or give us a call at (973) 538-1675 to inquire about wait times."
background={{ variant: "sparkles-gradient" }} inputs={[
{ name: "name", type: "text", placeholder: "Your Name", required: true },
{ name: "email", type: "email", placeholder: "Your Email", required: true }
]}
textarea={{ name: "message", placeholder: "Tell us what you're looking for..." }}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CRaO5i0elf1aDIpszoFKWNR31x/uploaded-1776352201800-hefnk77v.jpg"
useInvertedBackground={true} useInvertedBackground={true}
mediaPosition="right"
/> />
</div> </div>
@@ -49,8 +54,8 @@ export default function ContactPage() {
<FooterLogoEmphasis <FooterLogoEmphasis
logoText="Lackawanna Barber Shop" logoText="Lackawanna Barber Shop"
columns={[ columns={[
{ items: [{ label: "132 Morris St, Morristown, NJ", href: "/contact" }, { label: "+1 (973) 538-1675" }] }, { items: [{ label: "132 Morris St, Morristown, NJ", href: "/contact" }, { label: "+1 (973) 538-1675", href: "tel:+19735381675" }] },
{ items: [{ label: "Services", href: "#services" }, { label: "Team", href: "#team" }, { label: "FAQs", href: "#faq" }] } { items: [{ label: "Services", href: "/#services" }, { label: "Team", href: "/#team" }, { label: "FAQs", href: "/#faq" }] }
]} ]}
/> />
</div> </div>