diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 03f1e92..f0be936 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1416 +1,22 @@ -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"; +import type { Metadata } from 'next'; +import { Inter } from 'next/font/google'; +import './globals.css'; -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: "SR12 - Premium Car Detailing & Hotel Laundry Services", description: "Professional car detailing and hospitality textile care services. We deliver luxury-level attention to detail for automotive and hotel businesses.", keywords: "car detailing, professional car wash, hotel laundry service, textile care, uniform cleaning, premium service", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "SR12 - Premium Service Excellence", description: "Professional car detailing and hospitality textile care with uncompromising quality standards.", siteName: "SR12", type: "website"}, - twitter: { - card: "summary_large_image", title: "SR12 - Premium Car Detailing & Hotel Services", description: "Discover luxury-level automotive and textile care services."}, + title: 'SR12 - Premium Service Excellence', + description: 'Professional auto detailing and hospitality textile care services', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -