diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fb4cf95..e2b3036 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,23 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); +import "./styles/variables.css"; +import "./styles/base.css"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "JrBlendz - Premium Barbershop Haircuts & Grooming", description: "Expert barbershop services in precision cuts, fades, and beard grooming. Book your appointment at JrBlendz today.", keywords: "barbershop, haircuts, barber, fade cuts, beard grooming, mens grooming", metadataBase: new URL("https://jrblendz.com"), - alternates: { - canonical: "https://jrblendz.com" - }, - openGraph: { - title: "JrBlendz - Premium Barbershop", description: "Expert barbershop services specializing in precision cuts and grooming", url: "https://jrblendz.com", siteName: "JrBlendz", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/front-view-hairstyling-using-hairdryer_23-2148506236.jpg", alt: "JrBlendz Premium Barbershop" - } - ] - }, - twitter: { - card: "summary_large_image", title: "JrBlendz - Premium Barbershop", description: "Expert barbershop services specializing in precision cuts and grooming", images: ["http://img.b2bpic.net/free-photo/front-view-hairstyling-using-hairdryer_23-2148506236.jpg"] - } -}; + title: "JrBlendz | Solo Barber Excellence", description: "Premium barbershop services by a solo barber. Expert cuts, precise fades, and premium beard care tailored to your style."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}