diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 590a34c..3bdef19 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,57 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Public_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Public_Sans } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Barbershop 2020 - Premium Men's Grooming", + description: "Professional barbershop offering precision haircuts, fades, beard trims, and hot towel shaves. Expert barbers delivering timeless style and premium grooming.", + keywords: "barbershop, haircut, fade, beard trim, men's grooming, barber shop near me", + openGraph: { + title: "Barbershop 2020 - Premium Men's Grooming", + description: "Experience precision cuts and timeless style at Barbershop 2020. Professional barbers dedicated to excellence.", + url: "https://barbershop2020.com", + siteName: "Barbershop 2020", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/high-angle-male-self-care-setting-still-life_23-2150326537.jpg", + alt: "Barbershop 2020 - Premium barbershop interior", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Barbershop 2020 - Premium Men's Grooming", + description: "Precision cuts. Timeless style. Premium grooming services.", + images: ["http://img.b2bpic.net/free-photo/high-angle-male-self-care-setting-still-life_23-2150326537.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +60,9 @@ export default function RootLayout({ return ( - + {children}