From c1fd8a79bc2a20777f9e1c6791f31064be4f198f Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 04:47:20 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1436 +------------------------------------------- 1 file changed, 7 insertions(+), 1429 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bd4d7e9..5256414 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1441 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Public_Sans } 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 publicSans = Public_Sans({ - variable: "--font-public-sans", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "LUXURIA | Premium Luxury Car Rentals", - description: "Experience luxury travel with LUXURIA. Rent premium vehicles including Lamborghini, Mercedes, and Porsche. Premium service, transparent pricing, 24/7 support.", - keywords: "luxury car rental, premium vehicles, car rental service, exotic car rental, lamborghini rental", - metadataBase: new URL("https://luxuria.example.com"), - alternates: { - canonical: "https://luxuria.example.com", - }, - openGraph: { - title: "LUXURIA | Premium Luxury Car Rentals", - description: "Experience the ultimate in luxury vehicle rentals. Handpicked premium cars, transparent pricing, and exceptional service.", - url: "https://luxuria.example.com", - siteName: "LUXURIA", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/young-woman-car-showroom-choosing-car_1303-19792.jpg", - alt: "Luxury supercar showcase", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "LUXURIA | Premium Luxury Car Rentals", - description: "Book premium luxury vehicles online. Lamborghini, Mercedes, Porsche and more.", - images: ["http://img.b2bpic.net/free-photo/young-woman-car-showroom-choosing-car_1303-19792.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "LUXURIA - Premium Luxury Car Rentals", description: "Experience luxury on every drive. Rent premium vehicles for unforgettable journeys."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -