6 Commits

Author SHA1 Message Date
5d3eb6a182 Update src/app/page.tsx 2026-03-06 12:50:57 +00:00
1c4c293bf0 Update src/app/layout.tsx 2026-03-06 12:50:56 +00:00
b7e3885f10 Merge version_2 into main
Merge version_2 into main
2026-03-06 12:49:16 +00:00
ee2b63faac Update src/app/page.tsx 2026-03-06 12:49:12 +00:00
7e1a0a401e Update src/app/layout.tsx 2026-03-06 12:49:12 +00:00
4a29073750 Merge version_1 into main
Merge version_1 into main
2026-03-06 12:47:22 +00:00
2 changed files with 17 additions and 52 deletions

View File

@@ -1,54 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Archivo } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "@/styles/globals.css";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const archivo = Archivo({
variable: "--font-archivo", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Beechmont Barbershop | Premium Barber Services", description: "Professional barbershop offering expert haircuts, beard grooming, and straight razor shaves. Visit Beechmont Barbershop for premium grooming services.", keywords: "barbershop, haircuts, beard trimming, barber, grooming, men's salon", openGraph: {
title: "Beechmont Barbershop | Premium Barber Services", description: "Professional barbershop offering expert haircuts, beard grooming, and straight razor shaves.", siteName: "Beechmont Barbershop", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/close-up-image-female-hairdresser-washing-bearded-men-s-hair-before-haircut-saloon_613910-5446.jpg", alt: "Beechmont Barbershop"},
],
},
twitter: {
card: "summary_large_image", title: "Beechmont Barbershop | Premium Barber Services", description: "Professional barbershop offering expert haircuts, beard grooming, and straight razor shaves.", images: ["http://img.b2bpic.net/free-photo/close-up-image-female-hairdresser-washing-bearded-men-s-hair-before-haircut-saloon_613910-5446.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Beechmont Barbershop", description: "Premium barbershop experience with expert barbers and classic grooming services"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -95,15 +95,15 @@ export default function LandingPage() {
tagAnimation="slide-up"
features={[
{
id: "1", title: "Classic Haircuts & Styling", tags: ["Precision", "All Hair Types"],
id: "1", title: "Classic Haircuts & Styling - Starting at $25", tags: ["Precision", "All Hair Types"],
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-barber-shop-shaving_23-2148298346.jpg", imageAlt: "Professional haircut service"
},
{
id: "2", title: "Beard Shaping & Trim", tags: ["Expert Care", "Design"],
id: "2", title: "Beard Shaping & Trim - Starting at $18", tags: ["Expert Care", "Design"],
imageSrc: "http://img.b2bpic.net/free-photo/master-applying-shaving-foam-client-face_1153-9444.jpg", imageAlt: "Beard grooming service"
},
{
id: "3", title: "Straight Razor Shave", tags: ["Luxury Experience", "Classic"],
id: "3", title: "Straight Razor Shave - Starting at $35", tags: ["Luxury Experience", "Classic"],
imageSrc: "http://img.b2bpic.net/free-photo/barber-using-shaving-cream-contour-male-customer-s-beard_23-2148985733.jpg", imageAlt: "Straight razor shave service"
}
]}
@@ -175,17 +175,17 @@ export default function LandingPage() {
<ContactSplit
tag="Get In Touch"
tagIcon={Phone}
title="Book Your Appointment"
description="Schedule your visit at Beechmont Barbershop. Whether it's a quick trim or a full grooming experience, we're here for you. Drop by or call ahead."
title="Walk In or Call Ahead"
description="Book your appointment at Beechmont Barbershop by phone at (555) 123-4567 or visit us anytime. We welcome walk-ins and always make time for appointments. No email needed—just stop by or give us a call."
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/barber-applying-shaving-cream-aged-man-hair-salon_23-2148182016.jpg"
imageAlt="Barbershop interior"
mediaAnimation="slide-up"
mediaPosition="right"
inputPlaceholder="Enter your email"
buttonText="Subscribe"
termsText="Stay updated with promotions and new services. We respect your privacy."
inputPlaceholder="Enter your phone number"
buttonText="Get Directions"
termsText="Call (555) 123-4567 or visit us at Beechmont Barbershop. Open Mon-Fri 9AM-7PM, Sat 9AM-6PM, Sun 11AM-5PM."
/>
</div>
@@ -226,4 +226,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}