From bb5d4f171a4d5891361321e1faeae6abfc0f79d7 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 18:00:08 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 54 ++++++---------------------------------------- 1 file changed, 7 insertions(+), 47 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b4d37ad..6ff7b79 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Montserrat } 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 montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "52 Rental - Premium Car Rentals at Affordable Prices", description: "Book luxury and economy cars with 52 Rental. Instant booking, 24/7 support, full insurance coverage. Affordable daily, weekly, and monthly rates.", keywords: "car rental, car hire, luxury cars, vehicle rental, affordable rates, instant booking", metadataBase: new URL("https://52rental.com"), - alternates: { - canonical: "https://52rental.com" - }, - openGraph: { - title: "52 Rental - Premium Car Rentals", description: "Rent premium vehicles at affordable prices with flexible booking options and 24/7 support", url: "https://52rental.com", siteName: "52 Rental", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/young-woman-choosing-car-car-showroom_1303-17456.jpg", alt: "52 Rental premium car fleet" - } - ] - }, - twitter: { - card: "summary_large_image", title: "52 Rental - Premium Car Rentals", description: "Instant car booking with full insurance coverage and 24/7 support", images: ["http://img.b2bpic.net/free-photo/young-woman-choosing-car-car-showroom_1303-17456.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "52 Rental - Premium Car Rentals", description: "Book premium vehicles at affordable prices with 52 Rental. Instant booking, full insurance coverage, and 24/7 customer support."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}