diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d0dea86..ff6007b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_Sans } 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 openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Professional Car Detailing Services | AutoShine Detailing", description: "Book premium car detailing services online. Expert exterior & interior detailing, ceramic coating, and fleet services with 24/7 availability.", keywords: "car detailing, auto detailing, ceramic coating, car wash, professional detailing, interior cleaning", metadataBase: new URL("https://autoshinedetailing.com"), - alternates: { - canonical: "https://autoshinedetailing.com"}, - openGraph: { - title: "Premium Car Detailing Services", description: "Transform your vehicle with professional detailing. Book your appointment today.", url: "https://autoshinedetailing.com", siteName: "AutoShine Detailing", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-car-care-washing_23-2149172895.jpg", alt: "Professional car detailing"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Professional Car Detailing Services", description: "Expert car detailing with online booking available 24/7", images: ["http://img.b2bpic.net/free-photo/close-up-car-care-washing_23-2149172895.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "AutoShine Detailing - Professional Car Detailing Services", description: "Premium car detailing services that transform your vehicle. Book your appointment today."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}