diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d0cfa5d..4db046c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,16 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Poppins } 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 poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); export const metadata: Metadata = { - title: "Supreme Barber Studio | Premium Barbering Services", description: "Expert barbering services including precision haircuts, fade cuts, beard grooming, and hot towel shaves. Book your appointment at Supreme Barber Studio today.", keywords: "barber, haircut, fade, beard grooming, barbershop, professional barber, men's grooming", metadataBase: new URL("https://www.supremebarberstudio.com"), - alternates: { - canonical: "https://www.supremebarberstudio.com"}, - openGraph: { - title: "Supreme Barber Studio | Premium Barbering Excellence", description: "Experience premium barbering excellence with expert stylists and precision cuts.", url: "https://www.supremebarberstudio.com", siteName: "Supreme Barber Studio", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/faceless-woman-cutting-beard-man_23-2147778905.jpg", alt: "Supreme Barber Studio - Professional Barbering"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Supreme Barber Studio | Premium Barbering Services", description: "Expert barbering services with precision cuts and professional grooming.", images: ["http://img.b2bpic.net/free-photo/faceless-woman-cutting-beard-man_23-2147778905.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Supreme Barber Studio", description: "Experience premium barbering excellence at Supreme Barber Studio. Expert stylists, precision cuts, and professional grooming services."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}