From d33e8589dab504e390e5d273afe18bab9c01fee0 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 18:17:14 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 56 +++++++++------------------------------------- 1 file changed, 10 insertions(+), 46 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9dc9268..04bb2ee 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,22 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { DM_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import type { Metadata } from 'next'; +import { Inter } from 'next/font/google'; +import './globals.css'; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = { - title: "CX Studio | Premium Barbershop Services", description: "Expert barbering at CX Studio. Premium haircuts, beard grooming, and professional grooming services with friendly staff and no long wait times.", keywords: "barbershop, haircuts, beard trim, barber, grooming, professional barber", metadataBase: new URL("https://cxstudio.com"), - alternates: { - canonical: "https://cxstudio.com"}, - openGraph: { - title: "CX Studio | Premium Barbershop", description: "Experience expert barbering craftsmanship. Premium haircuts, beard grooming, and professional services.", url: "https://cxstudio.com", siteName: "CX Studio", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/side-view-man-getting-new-haircut_23-2148242786.jpg", alt: "CX Studio Barbershop"}, - ], - }, - twitter: { - card: "summary_large_image", title: "CX Studio | Premium Barbershop", description: "Expert barbering services with friendly staff and quality craftsmanship.", images: ["http://img.b2bpic.net/free-photo/side-view-man-getting-new-haircut_23-2148242786.jpg"], - }, - robots: { - index: true, - follow: true, - }, + title: 'CX Studio - Premium Barbershop', + description: 'Experience expert barbering craftsmanship at CX Studio. Premium haircuts, beard trims, and professional grooming.', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}