diff --git a/src/app/layout.tsx b/src/app/layout.tsx index baa454f..eedddd0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1430 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Libre_Baskerville } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", - subsets: ["latin"], - weight: ["400", "700"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Coiffure Shades - Expert Barbershop | Professional Haircuts & Fades", - description: "Premium barbershop offering sharp fades, expert haircuts, and professional grooming services. Meet our skilled barbers: King, Mark, and Alanna. Book your appointment today.", - keywords: "barbershop, haircuts, fades, beard trims, professional barber, men's grooming, kids haircuts", - openGraph: { - title: "Coiffure Shades - Professional Barbershop", - description: "Sharp Cuts. Clean Fades. Professional Service. Premium barbershop with expert barbers dedicated to precision and excellence.", - siteName: "Coiffure Shades", - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "Coiffure Shades - Professional Barbershop", - description: "Expert haircuts and beard services from master barbers", - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Coiffure Shades | Professional Barbershop", description: "Expert barbershop services with precision cuts, fades, and professional grooming."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -