Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 763214f201 | |||
| 131b6dec18 | |||
| 0ee919c082 |
@@ -1,45 +1,18 @@
|
|||||||
import type { Metadata } from "next";
|
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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 | Chicago Grooming House',
|
||||||
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: [
|
description: 'Premium barbershop in Chicago offering precision haircuts, beard work, and grooming services. Book your appointment today.',
|
||||||
{
|
|
||||||
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"]
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body>{children}
|
||||||
<body
|
|
||||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1407,7 +1380,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -67,13 +67,13 @@ export default function LandingPage() {
|
|||||||
gridVariant="three-columns-all-equal-width"
|
gridVariant="three-columns-all-equal-width"
|
||||||
features={[
|
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}
|
useInvertedBackground={false}
|
||||||
|
|||||||
Reference in New Issue
Block a user