19 Commits

Author SHA1 Message Date
4cb39cab76 Update src/app/page.tsx 2026-04-18 17:29:15 +00:00
730359966f Update src/app/page.tsx 2026-04-18 17:28:44 +00:00
be4e29b5da Update src/app/about/page.tsx 2026-04-18 17:28:43 +00:00
a55a30f79a Switch to version 25: modified src/app/page.tsx 2026-04-18 16:58:30 +00:00
999b961e6d Merge version_26 into main
Merge version_26 into main
2026-04-18 16:57:56 +00:00
ff34b377a1 Update src/app/page.tsx 2026-04-18 16:57:53 +00:00
86cd172114 Merge version_24 into main
Merge version_24 into main
2026-04-18 16:57:01 +00:00
ad25590f9c Update src/app/page.tsx 2026-04-18 16:56:58 +00:00
4c9904700d Merge version_24 into main
Merge version_24 into main
2026-04-18 16:56:32 +00:00
7a49784494 Update src/app/page.tsx 2026-04-18 16:56:29 +00:00
b7c1a36e28 Merge version_23 into main
Merge version_23 into main
2026-04-18 16:50:23 +00:00
3bffca8776 Update src/app/page.tsx 2026-04-18 16:50:17 +00:00
18d9a5e6c7 Merge version_22 into main
Merge version_22 into main
2026-04-16 18:42:36 +00:00
70abadd4ec Update src/app/contact/page.tsx 2026-04-16 18:42:33 +00:00
1e7e703bfb Merge version_22 into main
Merge version_22 into main
2026-04-16 18:42:11 +00:00
bcd85e4403 Update src/app/contact/page.tsx 2026-04-16 18:42:08 +00:00
e36d10ff12 Merge version_22 into main
Merge version_22 into main
2026-04-16 18:41:47 +00:00
350bbba88d Update src/app/contact/page.tsx 2026-04-16 18:41:43 +00:00
d7a8fe39c9 Merge version_21 into main
Merge version_21 into main
2026-04-16 18:36:47 +00:00
3 changed files with 56 additions and 59 deletions

View File

@@ -45,7 +45,7 @@ export default function AboutPage() {
logoText="Lackawanna Barber Shop" logoText="Lackawanna Barber Shop"
columns={[ columns={[
{ items: [{ label: "132 Morris St, Morristown, NJ", href: "/contact" }, { label: "+1 (973) 538-1675", href: "tel:+19735381675" }] }, { 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>

View File

@@ -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 ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; 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,42 +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">
<ContactSplitForm <ContactCTA
tag="Contact"
title="Ready for your next cut?" title="Ready for your next cut?"
description="Stop by our Morristown shop or give us a call at (973) 538-1675 to inquire about wait times." description="Stop by our Morristown shop or give us a call at (973) 538-1675 to inquire about wait times."
inputs={[ buttons={[{ text: "Submit", onClick: () => router.push("/") }]}
{ name: "name", type: "text", placeholder: "Your Name", required: true }, background={{ variant: "plain" }}
{ 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>
<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", href: "tel:+19735381675" }] }, rightLink={{ text: "Home", href: "/" }}
{ items: [{ label: "Services", href: "/#services" }, { label: "Team", href: "/#team" }, { label: "FAQs", href: "/#faq" }] }
]}
/> />
</div> </div>
</ReactLenis> </ReactLenis>

View File

@@ -2,14 +2,13 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import PricingCardEight from '@/components/sections/pricing/PricingCardEight'; import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
import TeamCardFive from '@/components/sections/team/TeamCardFive'; 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() { export default function LandingPage() {
return ( return (
@@ -30,10 +29,10 @@ export default function LandingPage() {
<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"
@@ -77,9 +76,9 @@ export default function LandingPage() {
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
plans={[ 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: "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: "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: "Contact Us", 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: "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" title="Quality Service, Transparent Price"
description="Simple, honest pricing for the services you need." description="Simple, honest pricing for the services you need."
@@ -101,24 +100,28 @@ export default function LandingPage() {
</div> </div>
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials">
<TestimonialCardSixteen <TestimonialCardTwo
animationType="slide-up" animationType="slide-up"
textboxLayout="split-description" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
testimonials={[ title="Testimonials"
{ id: "1", name: "Barry H.", role: "Loyal Customer", company: "FL", rating: 5 }, description="See what our clients say about our work."
{ id: "2", name: "Melissa C.", role: "Regular Client", company: "NY", rating: 5 }, testimonials={[
{ 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: "1",
{ id: "5", name: "Michael P.", role: "Client", company: "NY", rating: 5 }, name: "Client One",
]} role: "Local Customer",
kpiItems={[ testimonial: "Exceptional service and great atmosphere.",
{ value: "100+", label: "Weekly Cuts" }, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CRaO5i0elf1aDIpszoFKWNR31x/uploaded-1776531377369-oo06t3wn.png"
{ value: "20+", label: "Years Served" }, },
{ value: "5★", label: "Rating Average" }, {
]} id: "2",
title="What Our Clients Say" name: "Client Two",
description="We are proud to serve our community and deliver the best cuts in town." 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> </div>
@@ -143,8 +146,8 @@ export default function LandingPage() {
<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: "/contact" }] },
{ 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>