diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 46559ad..b7bad4b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,20 @@ 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"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "All Pro Styles Inc - Premium Barbershop", description: "Award-winning barbershop offering expert haircuts, hot shaves, and beard grooming. 15+ years of excellence. Book your appointment today.", keywords: "barbershop, haircuts, shave, beard grooming, professional barber, fades, undercuts", openGraph: { - title: "All Pro Styles Inc - Premium Barbershop", description: "Experience professional grooming at All Pro Styles Inc. Expert barbers delivering precision cuts, hot shaves, and beard grooming.", type: "website", siteName: "All Pro Styles Inc", images: [ - { - url: "http://img.b2bpic.net/free-photo/side-view-barber-trimming-his-client-s-beard_23-2148242814.jpg", alt: "All Pro Styles Inc Premium Barbershop"}, - ], - }, - twitter: { - card: "summary_large_image", title: "All Pro Styles Inc - Premium Barbershop", description: "Expert haircuts, hot shaves, and beard grooming. Book now.", images: [ - "http://img.b2bpic.net/free-photo/side-view-barber-trimming-his-client-s-beard_23-2148242814.jpg"], - }, -}; + title: "All Pro Styles Inc - Premium Barbering Excellence", description: "Experience professional grooming at All Pro Styles Inc. Expert barbers delivering precision cuts, hot shaves, and beard grooming."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}