diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 22d4b65..04b14d4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,50 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; -import { DM_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "U.S. BARBER | Premium Barbershop Services", description: "Experience expert barbering at U.S. BARBER. Precision haircuts, beard grooming, and traditional shaving services by master barbers. Book your appointment today.", keywords: "barbershop, haircut, barber, beard grooming, fades, shaving, grooming services", openGraph: { - title: "U.S. BARBER | Premium Barbershop Services", description: "Experience expert barbering at U.S. BARBER. Precision haircuts, beard grooming, and traditional shaving services by master barbers.", siteName: "U.S. BARBER", type: "website"}, - twitter: { - card: "summary_large_image", title: "U.S. BARBER | Premium Barbershop Services", description: "Experience expert barbering at U.S. BARBER. Premium haircuts and grooming services."}, -}; + title: "U.S. BARBER - Premium Barbershop Services", description: "Experience traditional barbering excellence with modern expertise. Premium haircuts, expert shaving, and grooming services."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}