Compare commits
7 Commits
version_20
...
version_22
| Author | SHA1 | Date | |
|---|---|---|---|
| 70abadd4ec | |||
| bcd85e4403 | |||
| 350bbba88d | |||
| d7a8fe39c9 | |||
| e5ee48cc07 | |||
| 33e28812d7 | |||
| e51edb2ab9 |
@@ -2,11 +2,14 @@
|
|||||||
|
|
||||||
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 { useRouter } from "next/navigation";
|
||||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||||
|
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||||
|
|
||||||
export default function ContactPage() {
|
export default function ContactPage() {
|
||||||
|
const router = useRouter();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="expand-hover"
|
defaultButtonVariant="expand-hover"
|
||||||
@@ -21,37 +24,33 @@ export default function ContactPage() {
|
|||||||
headingFontWeight="extrabold"
|
headingFontWeight="extrabold"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingOverlay
|
<NavbarStyleApple
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "About", id: "/about"},
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Services", id: "services"},
|
{ name: "About", id: "/about" },
|
||||||
{ name: "Team", id: "team"},
|
{ name: "Contact", id: "/contact" }
|
||||||
{ name: "Testimonials", id: "testimonials"},
|
]}
|
||||||
{ name: "FAQ", id: "faq"},
|
brandName="Lackawanna"
|
||||||
{ name: "Contact", id: "/contact"},
|
|
||||||
]}
|
|
||||||
brandName="Lackawanna"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact-content" className="pt-32 pb-24">
|
<div id="contact-content" data-section="contact-content" className="pt-32 pb-24">
|
||||||
<ContactCenter
|
<ContactCTA
|
||||||
tag="Visit Us"
|
tag="Contact"
|
||||||
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" }}
|
buttons={[{ text: "Submit", onClick: () => router.push("/") }]}
|
||||||
|
background={{ variant: "plain" }}
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterLogoReveal
|
||||||
logoText="Lackawanna Barber Shop"
|
logoText="Lackawanna Barber Shop"
|
||||||
columns={[
|
leftLink={{ text: "Contact", href: "/contact" }}
|
||||||
{ items: [{ label: "132 Morris St, Morristown, NJ", href: "/contact" }, { label: "+1 (973) 538-1675" }] },
|
rightLink={{ text: "Home", href: "/" }}
|
||||||
{ items: [{ label: "Services", href: "#services" }, { label: "Team", href: "#team" }, { label: "FAQs", href: "#faq" }] }
|
|
||||||
]}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
Reference in New Issue
Block a user