diff --git a/src/app/layout.tsx b/src/app/layout.tsx index cf92dfb..5711257 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,43 +1,44 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; -import { Inter } from "next/font/google"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/tag/Tag"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], +const geistSans = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "The Rustic Blade Co. | Premium Barbershop", description: "Discover luxury grooming at The Rustic Blade Co. Expert barbers, traditional straight-razor shaves, and premium beard care. Book your appointment today.", keywords: "barbershop, grooming, haircuts, straight razor shave, beard care, luxury barber, professional grooming, men's salon", openGraph: { - title: "The Rustic Blade Co. | Premium Barbershop", description: "Experience premium grooming crafted by expert barbers. Traditional techniques meet modern style.", type: "website", siteName: "The Rustic Blade Co."}, - twitter: { - card: "summary_large_image", title: "The Rustic Blade Co. | Premium Barbershop", description: "Luxury grooming and expert barbering services"}, - robots: { - index: true, - follow: true, - }, -}; + title: "The Rustic Blade Co. | Premium Barbershop", description: "Experience premium grooming at its finest. Master barbers blending traditional craftsmanship with modern style for exceptional haircuts, straight-razor shaves, and beard care."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - + +