diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 63af3a5..7a57ea1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,20 @@ import type { Metadata } from "next"; -import { Manrope } from "next/font/google"; -import { DM_Sans } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-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 inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Top Gun Cuts Barbershop - Biloxi", description: "Professional barbershop in Biloxi, MS offering quality haircuts, fades, beard trims, and grooming services. Located at Commerce Court Shopping Center.", keywords: "barbershop Biloxi MS, haircuts near me, barber, professional haircut, skin fades, beard trim, men's grooming", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Top Gun Cuts Barbershop - Biloxi", description: "Premium barbershop offering sharp cuts and professional grooming in Biloxi", type: "website", siteName: "Top Gun Cuts", url: "https://topguncuts.com", images: [ - { - url: "http://img.b2bpic.net/free-photo/professional-hairdresser-modeling-beard-with-scissors-comb-barbershop-close-up-photo_613910-18538.jpg", alt: "Top Gun Cuts Barbershop"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Top Gun Cuts Barbershop - Biloxi", description: "Professional haircuts and grooming services in Biloxi, MS", images: ["http://img.b2bpic.net/free-photo/professional-hairdresser-modeling-beard-with-scissors-comb-barbershop-close-up-photo_613910-18538.jpg"], - }, -}; + title: "Top Gun Cuts Barbershop", description: "Professional barbershop services in Biloxi, MS"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}