From 9bf14d83403f3b03f4c6581522d846b7c85bf4b5 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 17:05:45 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 49 +++++++--------------------------------------- 1 file changed, 7 insertions(+), 42 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bde3fd7..86ddaa8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { DM_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/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 dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Auto Spa | Premium Car Wash & Detailing Services", description: "Professional car wash and detailing services delivering showroom shine. Premium products, expert techniques, and customer satisfaction guaranteed.", keywords: "car wash, auto detailing, car detailing, professional car wash, premium detailing services", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Auto Spa | Premium Car Wash & Detailing", description: "Experience luxury car care with Auto Spa's professional detailing services", type: "website", siteName: "Auto Spa", images: [ - { - url: "http://img.b2bpic.net/free-photo/driver-washing-his-car-by-sponge-with-soap-solution_651396-3234.jpg", alt: "Auto Spa Premium Car Wash"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Auto Spa | Premium Car Wash & Detailing", description: "Professional car wash and detailing services for your vehicle's perfect shine", images: ["http://img.b2bpic.net/free-photo/driver-washing-his-car-by-sponge-with-soap-solution_651396-3234.jpg"], - }, -}; + title: "Auto Spa | Premium Car Wash & Detailing Services", description: "Professional car wash and detailing services for your vehicle's perfect shine. Premium eco-friendly products and expert care."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}