From dc4a0cfe6c93e952ad0cee109ca97c5a2f96c5fa Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 14:20:11 +0000 Subject: [PATCH 1/3] Update src/app/fleet/page.tsx --- src/app/fleet/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/fleet/page.tsx b/src/app/fleet/page.tsx index 4c65483..9fd8422 100644 --- a/src/app/fleet/page.tsx +++ b/src/app/fleet/page.tsx @@ -55,7 +55,7 @@ export default function FleetPage() { href: "/", }, ]} - imageSrc="http://img.b2bpic.net/free-photo/look-from-white-car-white-house_8353-1201.jpg" + imageSrc="http://img.b2bpic.net/free-photo/look-from-white-car-white-house_8353-1201.jpg?_wi=2" imageAlt="Premium luxury sports car showcase" showDimOverlay={true} buttonAnimation="slide-up" @@ -72,35 +72,35 @@ export default function FleetPage() { id: "1", name: "Ferrari 488 GTB", price: "$2,500/day", - imageSrc: "http://img.b2bpic.net/free-photo/red-sports-tuned-car-rear-view-wheel-close-up_78492-3674.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/red-sports-tuned-car-rear-view-wheel-close-up_78492-3674.jpg?_wi=4", imageAlt: "Red Ferrari 488 GTB sports car", }, { id: "2", name: "Porsche 911 Carrera", price: "$1,800/day", - imageSrc: "http://img.b2bpic.net/free-photo/silver-luxury-sedan-parked-port_114579-5199.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/silver-luxury-sedan-parked-port_114579-5199.jpg?_wi=3", imageAlt: "Silver Porsche 911 Carrera", }, { id: "3", name: "Rolls-Royce Phantom", price: "$3,200/day", - imageSrc: "http://img.b2bpic.net/free-photo/well-dressed-beautiful-woman-sitting-front-seat-man-dressed-suit-standing-near-car-outdoors_613910-4822.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/well-dressed-beautiful-woman-sitting-front-seat-man-dressed-suit-standing-near-car-outdoors_613910-4822.jpg?_wi=3", imageAlt: "Gold Rolls-Royce Phantom luxury sedan", }, { id: "4", name: "Lamborghini Huracán", price: "$2,800/day", - imageSrc: "http://img.b2bpic.net/free-photo/luxury-sedan-sport-cars-road_114579-4019.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/luxury-sedan-sport-cars-road_114579-4019.jpg?_wi=3", imageAlt: "Black Lamborghini Huracán supercar", }, { id: "5", name: "Bentley Continental GT", price: "$2,200/day", - imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-car-showroom_1303-22855.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-car-showroom_1303-22855.jpg?_wi=3", imageAlt: "Champagne Bentley Continental GT", }, ]} -- 2.49.1 From 7226a9439f8c4df226de27858218152ece2df02e Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 14:20:15 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 59 ++++++++++++++++++++++++++++++++++++---------- 1 file changed, 47 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c1f48a0..b64b470 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,60 @@ 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"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Public_Sans } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "Luxury Car Rentals | Premium & Exotic Vehicles | LuxeDrive", + description: "Experience premium luxury car rentals with LuxeDrive. Book Ferrari, Porsche, Rolls-Royce, and more exotic vehicles with seamless booking and concierge service.", + keywords: "luxury car rentals, exotic vehicle rental, premium car rental, Ferrari rental, Porsche rental, Rolls-Royce rental, luxury transportation", + metadataBase: new URL("https://luxedrive.com"), + alternates: { + canonical: "https://luxedrive.com", + }, + openGraph: { + title: "Luxury Car Rentals | Premium & Exotic Vehicles", + description: "Experience the pinnacle of automotive luxury with LuxeDrive's curated collection of premium and exotic vehicles.", + url: "https://luxedrive.com", + siteName: "LuxeDrive", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/look-from-white-car-white-house_8353-1201.jpg", + alt: "Premium luxury sports car collection", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Luxury Car Rentals | Premium & Exotic Vehicles", + description: "Experience premium luxury car rentals with exotic vehicles and concierge service.", + images: ["http://img.b2bpic.net/free-photo/look-from-white-car-white-house_8353-1201.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, @@ -31,7 +64,9 @@ export default function RootLayout({ return ( - + {children}