5 Commits

Author SHA1 Message Date
9f9db05615 Remove watermark 2026-04-09 11:33:52 +00:00
c3daf2b97f Update src/app/page.tsx 2026-04-09 11:19:52 +00:00
57261c16a2 Merge version_1 into main
Merge version_1 into main
2026-04-09 11:10:55 +00:00
3cfecb080a Merge version_1 into main
Merge version_1 into main
2026-04-09 11:10:31 +00:00
34ada35692 Merge version_1 into main
Merge version_1 into main
2026-04-09 11:09:54 +00:00
2 changed files with 8 additions and 10 deletions

View File

@@ -4,7 +4,6 @@ import { Inter } from "next/font/google";
import "./globals.css";
import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
@@ -33,7 +32,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${inter.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{

View File

@@ -49,7 +49,7 @@ export default function LandingPage() {
<HeroBillboardRotatedCarousel
background={{ variant: "rotated-rays-static" }}
title="Baysides trusted barbershop for clean cuts, sharp fades, and real consistency"
description="Professional service, attention to detail, fair prices, and a barbershop experience people keep coming back for."
description="Professional service, attention to detail, fair prices, and a barbershop experience people keep coming back for. Opening at 8:30 AM daily."
buttons={[{ text: "Book Appointment", href: "#booking" }, { text: "View Reviews", href: "#reviews" }]}
carouselItems={[
{ id: "1", imageSrc: "http://img.b2bpic.net/free-photo/young-man-barber-shop-after-getting-haircut_23-2149186513.jpg", imageAlt: "Barbershop interior" },
@@ -126,7 +126,7 @@ export default function LandingPage() {
{ id: "6", price: "$50", name: "Haircut + Beard", features: ["Combo service", "Full look"], buttons: [{ text: "Book Now", href: "#booking" }] },
]}
title="Barber services"
description="Call or book ahead for availability."
description="Call or book ahead for availability. Opening at 8:30 AM."
/>
</div>
@@ -174,7 +174,7 @@ export default function LandingPage() {
{ id: "3", title: "Do you do beard trims?", content: "Yes, full beard grooming is available." },
{ id: "4", title: "Is parking available?", content: "Parking is available nearby." },
{ id: "5", title: "What are your prices?", content: "Please see our services list for up-to-date pricing." },
{ id: "6", title: "What days are you open?", content: "Please check our booking portal for availability." },
{ id: "6", title: "What are your hours?", content: "We open daily at 8:30 AM." },
]}
title="Frequently Asked Questions"
faqsAnimation="slide-up"
@@ -186,7 +186,7 @@ export default function LandingPage() {
<ContactCenter
tag="Booking"
title="Ready for your next cut?"
description="Book your appointment with Style Cutz today and get the clean, professional service clients keep recommending."
description="Visit us at 34-27 Francis Lewis Blvd, Flushing, NY 11358 or call (718) 321-1530 to book."
useInvertedBackground={false}
background={{ variant: "plain" }}
/>
@@ -197,8 +197,8 @@ export default function LandingPage() {
columns={[
{
title: "Style Cutz Barbershop", items: [
{ label: "Bayside, NY", href: "#" },
{ label: "(555) 123-4567", href: "tel:5551234567" },
{ label: "34-27 Francis Lewis Blvd, Flushing, NY 11358", href: "#" },
{ label: "(718) 321-1530", href: "tel:7183211530" },
],
},
{
@@ -211,7 +211,6 @@ export default function LandingPage() {
{
title: "Book", items: [
{ label: "Book Now", href: "#booking" },
{ label: "Instagram", href: "#" },
],
},
]}
@@ -222,4 +221,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}