Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-03-05 19:12:56 +00:00

View File

@@ -1,50 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } 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 nunito = Nunito({
variable: "--font-nunito", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "DriveLux | Premium Automotive Excellence", description: "Discover luxury vehicles engineered for performance. Explore our exclusive collection of premium cars with cutting-edge technology and exceptional design.", keywords: "luxury cars, premium vehicles, automotive, sports cars, SUVs, performance", metadataBase: new URL("https://drivelux.com"),
openGraph: {
title: "DriveLux | Premium Automotive Excellence", description: "Experience the pinnacle of automotive luxury and performance", type: "website", siteName: "DriveLux"},
twitter: {
card: "summary_large_image", title: "DriveLux | Premium Automotive Excellence", description: "Discover luxury vehicles engineered for performance"},
robots: {
index: true,
follow: true,
},
};
title: "DriveLux - Premium Automotive Excellence", description: "Experience the pinnacle of automotive luxury and performance with DriveLux"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1412,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}