Update src/app/layout.tsx

This commit is contained in:
2026-03-04 12:40:23 +00:00
parent 2d75c4610f
commit 46346a0d33

View File

@@ -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 (
<html lang="en">
<body>
<body className={poppins.variable}>
{children}
<script