From c2a0a1ee298585e0522604d71912b70d56a3948d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 19:12:52 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 43 ++++++------------------------------------- 1 file changed, 6 insertions(+), 37 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 392cbb3..5246c9e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}