From bce9109b1f14f4034591b37c26dd6e9f3d6796b1 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 01:25:07 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e08bd69..209ead0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,7 +1,11 @@ import type { Metadata } from "next"; +import { Inter } from "next/font/google"; +import "./globals.css"; + +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "USA Barbershop", description: "Premium barbering services with expert barbers"}; + title: "USA Barbershop | Premium Haircuts & Grooming", description: "Exceptional haircuts, beard grooming, and professional service in a welcoming atmosphere. Trusted by 500+ customers."}; export default function RootLayout({ children, @@ -10,7 +14,7 @@ export default function RootLayout({ }) { return ( - {children} + {children}