70 lines
2.6 KiB
TypeScript
70 lines
2.6 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Halant } from "next/font/google";
|
|
import { Inter } from "next/font/google";
|
|
import "./globals.css";
|
|
import "@/lib/gsap-setup";
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
|
import { Manrope } from "next/font/google";
|
|
import { DM_Sans } from "next/font/google";
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Classy Cars Auto Detailing | Premium Mobile Car Wash Aurora, IN',
|
|
description: 'Experience top-tier mobile auto detailing in Aurora, Indiana. Classy Cars Auto Detailing brings professional cleaning, paint correction, and protection services to your doorstep. Book your spotless shine today!',
|
|
keywords: ["mobile auto detailing, car detailing Aurora Indiana, car wash Aurora IN, auto paint correction, ceramic coating, interior car cleaning, professional car detailing, Classy Cars"],
|
|
openGraph: {
|
|
"title": "Classy Cars Auto Detailing | Premium Mobile Car Wash Aurora, IN",
|
|
"description": "Experience top-tier mobile auto detailing in Aurora, Indiana. Classy Cars Auto Detailing brings professional cleaning, paint correction, and protection services to your doorstep. Book your spotless shine today!",
|
|
"url": "https://www.classycarsautodetailing.com",
|
|
"siteName": "Classy Cars Auto Detailing",
|
|
"images": [
|
|
{
|
|
"url": "http://img.b2bpic.net/free-photo/young-man-washing-car-carwash-station-outdoor_651396-2004.jpg",
|
|
"alt": "Luxurious car being polished to a high shine"
|
|
}
|
|
],
|
|
"type": "website"
|
|
},
|
|
twitter: {
|
|
"card": "summary_large_image",
|
|
"title": "Classy Cars Auto Detailing | Premium Mobile Car Wash Aurora, IN",
|
|
"description": "Experience top-tier mobile auto detailing in Aurora, Indiana. Classy Cars Auto Detailing brings professional cleaning, paint correction, and protection services to your doorstep. Book your spotless shine today!",
|
|
"images": [
|
|
"http://img.b2bpic.net/free-photo/young-man-washing-car-carwash-station-outdoor_651396-2004.jpg"
|
|
]
|
|
},
|
|
robots: {
|
|
"index": true,
|
|
"follow": true
|
|
},
|
|
};
|
|
|
|
|
|
const inter = Inter({
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
});
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body className={`${inter.variable} antialiased`}>
|
|
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
}
|