Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-06 12:49:16 +00:00
2 changed files with 10 additions and 45 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"
}
]}