Initial commit
This commit is contained in:
74
src/app/layout.tsx
Normal file
74
src/app/layout.tsx
Normal file
@@ -0,0 +1,74 @@
|
||||
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 Tag from "@/tag/Tag";
|
||||
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 manrope = Manrope({
|
||||
variable: "--font-manrope",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `${getVisualEditScript()}`
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user