diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fd9189d..ce2907d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,6 +1,12 @@ import type { Metadata } from "next"; +import { Poppins } from "next/font/google"; import "./globals.css"; +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +}); + export const metadata: Metadata = { title: "Turkish Barbers - Premium Barbering in Westbury", description: "Experience authentic Turkish barbering tradition with premium craftsmanship in Westbury. Expert barbers, traditional techniques, modern styles."}; @@ -11,7 +17,7 @@ export default function RootLayout({ }) { return ( -
+ {children}