Compare commits
22 Commits
version_20
...
version_27
| Author | SHA1 | Date | |
|---|---|---|---|
| 4cb39cab76 | |||
| 730359966f | |||
| be4e29b5da | |||
| a55a30f79a | |||
| 999b961e6d | |||
| ff34b377a1 | |||
| 86cd172114 | |||
| ad25590f9c | |||
| 4c9904700d | |||
| 7a49784494 | |||
| b7c1a36e28 | |||
| 3bffca8776 | |||
| 18d9a5e6c7 | |||
| 70abadd4ec | |||
| 1e7e703bfb | |||
| bcd85e4403 | |||
| e36d10ff12 | |||
| 350bbba88d | |||
| d7a8fe39c9 | |||
| e5ee48cc07 | |||
| 33e28812d7 | |||
| e51edb2ab9 |
@@ -45,7 +45,7 @@ export default function AboutPage() {
|
||||
logoText="Lackawanna Barber Shop"
|
||||
columns={[
|
||||
{ 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>
|
||||
|
||||
@@ -2,11 +2,14 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import { useRouter } from "next/navigation";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
|
||||
export default function ContactPage() {
|
||||
const router = useRouter();
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
@@ -21,37 +24,33 @@ export default function ContactPage() {
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "About", id: "/about"},
|
||||
{ name: "Services", id: "services"},
|
||||
{ name: "Team", id: "team"},
|
||||
{ name: "Testimonials", id: "testimonials"},
|
||||
{ name: "FAQ", id: "faq"},
|
||||
{ name: "Contact", id: "/contact"},
|
||||
]}
|
||||
brandName="Lackawanna"
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
brandName="Lackawanna"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-content" className="pt-32 pb-24">
|
||||
<ContactCenter
|
||||
tag="Visit Us"
|
||||
<div id="contact-content" data-section="contact-content" className="pt-32 pb-24">
|
||||
<ContactCTA
|
||||
tag="Contact"
|
||||
title="Ready for your next cut?"
|
||||
description="Stop by our Morristown shop to experience the Lackawanna difference."
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
description="Stop by our Morristown shop or give us a call at (973) 538-1675 to inquire about wait times."
|
||||
buttons={[{ text: "Submit", onClick: () => router.push("/") }]}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
<FooterLogoEmphasis
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="Lackawanna Barber Shop"
|
||||
columns={[
|
||||
{ items: [{ label: "132 Morris St, Morristown, NJ", href: "/contact" }, { label: "+1 (973) 538-1675" }] },
|
||||
{ items: [{ label: "Services", href: "#services" }, { label: "Team", href: "#team" }, { label: "FAQs", href: "#faq" }] }
|
||||
]}
|
||||
leftLink={{ text: "Contact", href: "/contact" }}
|
||||
rightLink={{ text: "Home", href: "/" }}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
@@ -2,14 +2,13 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
|
||||
import TeamCardFive from '@/components/sections/team/TeamCardFive';
|
||||
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -30,10 +29,10 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "About", id: "/about"},
|
||||
{ name: "Services", id: "services"},
|
||||
{ name: "Team", id: "team"},
|
||||
{ name: "Testimonials", id: "testimonials"},
|
||||
{ name: "FAQ", id: "faq"},
|
||||
{ name: "Services", id: "/services"},
|
||||
{ name: "Team", id: "/team"},
|
||||
{ name: "Testimonials", id: "/testimonials"},
|
||||
{ name: "FAQ", id: "/faq"},
|
||||
{ name: "Contact", id: "/contact"},
|
||||
]}
|
||||
brandName="Lackawanna"
|
||||
@@ -77,9 +76,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{ id: "basic", badge: "Classic", price: "$40", subtitle: "Precision Haircut", features: ["Classic Scissor Cut", "Modern Styling", "Expert Consultation"], buttons: [{text: "Book Now", href: "/contact"}]},
|
||||
{ id: "pro", badge: "Premium", price: "$75", subtitle: "Full Grooming Experience", features: ["Precision Haircut", "Beard Trim", "Hot Towel Service", "Relaxed Refresh"], buttons: [{text: "Book Now", href: "/contact"}]},
|
||||
{ id: "kids", badge: "Family", price: "$30", subtitle: "Youth Haircut", features: ["Gentle Scissor Cut", "Fast Friendly Service", "Classic Style"], buttons: [{text: "Book Now", href: "/contact"}]},
|
||||
{ id: "basic", badge: "Classic", price: "$40", subtitle: "Precision Haircut", features: ["Classic Scissor Cut", "Modern Styling", "Expert Consultation"], buttons: [{text: "Contact Us", href: "/contact"}]},
|
||||
{ id: "pro", badge: "Premium", price: "$75", subtitle: "Full Grooming Experience", features: ["Precision Haircut", "Beard Trim", "Hot Towel Service", "Relaxed Refresh"], buttons: [{text: "Contact Us", href: "/contact"}]},
|
||||
{ id: "kids", badge: "Family", price: "$30", subtitle: "Youth Haircut", features: ["Gentle Scissor Cut", "Fast Friendly Service", "Classic Style"], buttons: [{text: "Contact Us", href: "/contact"}]},
|
||||
]}
|
||||
title="Quality Service, Transparent Price"
|
||||
description="Simple, honest pricing for the services you need."
|
||||
@@ -101,24 +100,28 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardSixteen
|
||||
animationType="slide-up"
|
||||
textboxLayout="split-description"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{ id: "1", name: "Barry H.", role: "Loyal Customer", company: "FL", rating: 5 },
|
||||
{ id: "2", name: "Melissa C.", role: "Regular Client", company: "NY", rating: 5 },
|
||||
{ id: "3", name: "Tom K.", role: "Local Resident", company: "NJ", rating: 5 },
|
||||
{ id: "4", name: "Sarah J.", role: "Frequent Visitor", company: "NJ", rating: 5 },
|
||||
{ id: "5", name: "Michael P.", role: "Client", company: "NY", rating: 5 },
|
||||
]}
|
||||
kpiItems={[
|
||||
{ value: "100+", label: "Weekly Cuts" },
|
||||
{ value: "20+", label: "Years Served" },
|
||||
{ value: "5★", label: "Rating Average" },
|
||||
]}
|
||||
title="What Our Clients Say"
|
||||
description="We are proud to serve our community and deliver the best cuts in town."
|
||||
<TestimonialCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Testimonials"
|
||||
description="See what our clients say about our work."
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Client One",
|
||||
role: "Local Customer",
|
||||
testimonial: "Exceptional service and great atmosphere.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CRaO5i0elf1aDIpszoFKWNR31x/uploaded-1776531377369-oo06t3wn.png"
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Client Two",
|
||||
role: "Regular Visitor",
|
||||
testimonial: "Always get a perfect fade here.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CRaO5i0elf1aDIpszoFKWNR31x/uploaded-1776531377370-5uotcrix.png"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -143,8 +146,8 @@ export default function LandingPage() {
|
||||
<FooterLogoEmphasis
|
||||
logoText="Lackawanna Barber Shop"
|
||||
columns={[
|
||||
{ items: [{ label: "132 Morris St, Morristown, NJ", href: "/contact" }, { label: "+1 (973) 538-1675" }] },
|
||||
{ items: [{ label: "Services", href: "#services" }, { label: "Team", href: "#team" }, { label: "FAQs", href: "#faq" }] }
|
||||
{ items: [{ label: "132 Morris St, Morristown, NJ", href: "/contact" }, { label: "+1 (973) 538-1675", href: "/contact" }] },
|
||||
{ items: [{ label: "Services", href: "/services" }, { label: "Team", href: "/team" }, { label: "FAQs", href: "/faq" }] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user