diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0d09ce2..8c28bac 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Figtree } 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 { Figtree } 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 figtree = Figtree({ variable: "--font-figtree", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Barber Night - Premium Haircuts & Grooming in Marrakech", + description: "Premium barbershop in Marrakech offering expert haircuts, skin fades, beard grooming, and complete grooming services. Book your appointment online.", + keywords: "barber, barbershop, Marrakech, haircut, fade, beard grooming, men's grooming, premium barber", + metadataBase: new URL("https://barbernight.ma"), + alternates: { + canonical: "https://barbernight.ma", + }, + openGraph: { + title: "Barber Night - Premium Barbershop Marrakech", + description: "Premium barbershop in Marrakech with master barbers offering expert haircuts, fades, and grooming services.", + url: "https://barbernight.ma", + siteName: "Barber Night", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/low-angle-man-hair-salon_23-2150665447.jpg", + alt: "Barber Night Premium Barbershop", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Barber Night - Premium Barbershop", + description: "Expert haircuts and grooming in Marrakech", + images: ["http://img.b2bpic.net/free-photo/low-angle-man-hair-salon_23-2150665447.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}