Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-09 07:57:34 +00:00
2 changed files with 10 additions and 38 deletions

View File

@@ -1,45 +1,18 @@
import type { Metadata } from "next";
import { Montserrat } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
import type { Metadata } from 'next';
export const metadata: Metadata = {
title: "Gold Scissors | Premium Barbershop Chicago - Precision Fades & Lineups", description: "Gold Scissors delivers precision barbering with sharp fades, clean lineups, and premium grooming services in Chicago. Book your appointment with our expert barbers today.", keywords: "barbershop Chicago, precision haircuts, beard trim, fades, professional barber, grooming services", openGraph: {
title: "Gold Scissors - Premium Barbershop Chicago", description: "Experience precision barbering at its finest. Sharp fades, expert lineups, and professional grooming services.", siteName: "Gold Scissors", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/young-bearded-man-getting-haircut-by-hairdresser-while-sitting-chair-barbershop-barber-soul_627829-6416.jpg", alt: "Gold Scissors Barbershop"
}
]
},
twitter: {
card: "summary_large_image", title: "Gold Scissors - Chicago's Premier Barbershop", description: "Precision fades and expert grooming await. Book your appointment now.", images: ["http://img.b2bpic.net/free-photo/young-bearded-man-getting-haircut-by-hairdresser-while-sitting-chair-barbershop-barber-soul_627829-6416.jpg"]
}
title: 'Gold Scissors | Chicago Grooming House',
description: 'Premium barbershop in Chicago offering precision haircuts, beard work, and grooming services. Book your appointment today.',
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${montserrat.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1407,7 +1380,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -67,13 +67,13 @@ export default function LandingPage() {
gridVariant="three-columns-all-equal-width"
features={[
{
title: "Precision Haircuts", description: "Clean fades, sharp lineups, classic cuts, and modern styles tailored to your face shape and routine.", imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-lying-salon-while-barber-trimming-his-beard_651396-2964.jpg", imageAlt: "Precision haircut service", button: { text: "Learn More", href: "#" }
title: "Precision Haircuts", description: "Clean fades, sharp lineups, classic cuts, and modern styles tailored to your face shape and routine.", imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-lying-salon-while-barber-trimming-his-beard_651396-2964.jpg", imageAlt: "Precision haircut service", button: { text: "Book This Service", href: "#contact" }
},
{
title: "Beard & Razor Work", description: "Detailed beard trims, razor finishes, and clean shaves designed to leave you polished and camera-ready.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-barbershop_23-2148506272.jpg", imageAlt: "Beard and razor service", button: { text: "Learn More", href: "#" }
title: "Beard & Razor Work", description: "Detailed beard trims, razor finishes, and clean shaves designed to leave you polished and camera-ready.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-barbershop_23-2148506272.jpg", imageAlt: "Beard and razor service", button: { text: "Book This Service", href: "#contact" }
},
{
title: "Grooming Extras", description: "Eyebrow shaping, brow threading, and nose and ear waxing for a complete, elevated grooming experience.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-hugging-dog_23-2149271866.jpg", imageAlt: "Grooming extras service", button: { text: "Learn More", href: "#" }
title: "Grooming Extras", description: "Eyebrow shaping, brow threading, and nose and ear waxing for a complete, elevated grooming experience.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-hugging-dog_23-2149271866.jpg", imageAlt: "Grooming extras service", button: { text: "Book This Service", href: "#contact" }
}
]}
useInvertedBackground={false}