Merge version_3 into main #22

Merged
bender merged 1 commits from version_3 into main 2026-03-03 04:56:09 +00:00

View File

@@ -1,44 +1,23 @@
import type { Metadata } from "next";
import { Mulish } from "next/font/google";
import { Inter } from "next/font/google";
import "./styles/variables.css";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const mulish = Mulish({
variable: "--font-mulish", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Go Green Detailing - Professional Eco-Friendly Car Detailing", description: "Expert professional car detailing services using eco-friendly products. Exterior wash, interior detailing, ceramic coating, and more. Book your appointment today.", keywords: "car detailing, auto detailing, ceramic coating, car wash, eco-friendly, professional detailing, paint protection", openGraph: {
title: "Go Green Detailing - Professional Car Detailing Services", description: "Expert vehicle detailing with eco-conscious practices. Premium services from exterior wash to ceramic coating.", type: "website", siteName: "Go Green Detailing", images: [
{
url: "http://img.b2bpic.net/free-photo/young-man-washing-car-carwash-station-outdoor_651396-2004.jpg", alt: "Professional car detailing service"},
],
},
twitter: {
card: "summary_large_image", title: "Go Green Detailing - Professional Car Detailing", description: "Expert detailing services with environmental responsibility. Schedule your appointment now.", images: ["http://img.b2bpic.net/free-photo/young-man-washing-car-carwash-station-outdoor_651396-2004.jpg"],
},
};
title: "Go Green Detailing", description: "Professional car detailing services"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${mulish.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.variable}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1406,7 +1385,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}