diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5f42c6a..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,28 @@ import type { Metadata } from "next"; -import { Figtree } from "next/font/google"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "XCLUSIVE Barbershop Miami | Luxury Grooming", description: "Miami's #1 luxury barbershop. Premium haircuts, beard services, and grooming experiences for discerning professionals. 5-star rated. Book online.", keywords: "luxury barbershop Miami, premium grooming, executive haircuts, beard trimming, upscale salon, men's grooming", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "XCLUSIVE Barbershop Miami | Luxury Grooming Experience", description: "Step into luxury at Miami's premier barbershop. Expert craftsmanship, exclusive atmosphere, 5-star experience.", url: "https://xclusivebarbershop.com", siteName: "XCLUSIVE Barbershop", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/portrait-stylish-male-who-himself-shaving-while-sitting-barber-chair-hairdressing-salon_613910-18629.jpg", alt: "XCLUSIVE Barbershop Luxury Grooming"}, - ], - }, - twitter: { - card: "summary_large_image", title: "XCLUSIVE Barbershop | Miami's Luxury Grooming Destination", description: "Premium barbershop with expert barbers, exclusive atmosphere, and impeccable service.", images: ["http://img.b2bpic.net/free-photo/portrait-stylish-male-who-himself-shaving-while-sitting-barber-chair-hairdressing-salon_613910-18629.jpg"], - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +