Update src/app/layout.tsx

This commit is contained in:
2026-03-05 13:15:15 +00:00
parent d22cb20a0e
commit 4e9a4d9038

View File

@@ -1,49 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Archivo } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const archivo = Archivo({
variable: "--font-archivo", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Professional Car Detailing Services | DetailCraft", description: "Premium car detailing and ceramic coating services. Transform your vehicle with expert detailing and protection that lasts.", keywords: "car detailing, ceramic coating, auto detailing, paint protection, car care", openGraph: {
title: "Professional Car Detailing Services | DetailCraft", description: "Premium car detailing and ceramic coating services. Transform your vehicle with expert detailing and protection that lasts.", type: "website", siteName: "DetailCraft"},
twitter: {
card: "summary_large_image", title: "Professional Car Detailing Services | DetailCraft", description: "Premium car detailing and ceramic coating services. Transform your vehicle with expert detailing and protection that lasts."},
robots: {
index: true,
follow: true,
},
};
title: "Atlantic IT Solutions LLC", description: "Professional IT solutions and services"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}