Files
ea3d1df2-3fd2-41a1-ba6e-1e4…/src/app/layout.tsx
2026-03-16 04:00:30 +00:00

42 lines
1.1 KiB
TypeScript

import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Archivo } from "next/font/google";
export const metadata: Metadata = {
title: 'Prestige Motors - Luxury Automotive Excellence',
description: 'Experience pinnacle luxury automotive engineering. Explore our collection of handcrafted high-performance vehicles designed for the discerning driver.',
};
const archivo = Archivo({
variable: "--font-archivo", subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${archivo.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}