From 5aa2268ee74c7e8acae2b2001a731e0799c49c45 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 14:25:18 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 2780 -------------------------------------------- 1 file changed, 2780 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8e90b5b..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,2780 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Montserrat } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Studio 16 Barbershop | Premium Men's Grooming", description: "Expert barbering services since 2015. Professional haircuts, beard grooming, and hot towel shaves. Book your appointment today at Studio 16.", keywords: "barbershop, haircut, beard grooming, shave, men's grooming, professional barber", openGraph: { - title: "Studio 16 Barbershop", description: "Premium men's grooming services. Professional barbers dedicated to excellence.", type: "website", siteName: "Studio 16 Barbershop"}, - twitter: { - card: "summary_large_image", title: "Studio 16 Barbershop", description: "Premium men's grooming services"}, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -