From 46346a0d332d2ebfc13098887cdca5d632e6fe41 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 12:40:23 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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}