Merge version_1 into main #1
@@ -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",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${publicSans.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -43,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -52,7 +52,7 @@ export default function HomePage() {
|
||||
{ text: "Reserve Now", href: "#booking" },
|
||||
{ text: "View Fleet", href: "#fleet" },
|
||||
]}
|
||||
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=1"
|
||||
imageAlt="Premium luxury sports car showcase"
|
||||
showDimOverlay={true}
|
||||
buttonAnimation="slide-up"
|
||||
@@ -69,35 +69,35 @@ export default function HomePage() {
|
||||
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=1",
|
||||
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=1",
|
||||
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=1",
|
||||
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=1",
|
||||
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=1",
|
||||
imageAlt: "Champagne Bentley Continental GT",
|
||||
},
|
||||
]}
|
||||
@@ -165,7 +165,7 @@ export default function HomePage() {
|
||||
quote: "LuxeDrive provided an exceptional rental experience. The Ferrari was perfectly maintained, and the concierge service exceeded all expectations. I've already booked my next rental!",
|
||||
tag: "Premium Experience",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/young-lady-showing-thumbs-up-shirt-cardigan-looking-joyful-front-view_176474-110768.jpg",
|
||||
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=2",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
@@ -175,7 +175,7 @@ export default function HomePage() {
|
||||
quote: "Renting the Rolls-Royce for our corporate event was seamless. The professional delivery, pristine condition, and flawless service made our event truly memorable.",
|
||||
tag: "Corporate Event",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-business-woman_23-2148603029.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",
|
||||
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=2",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
@@ -185,7 +185,7 @@ export default function HomePage() {
|
||||
quote: "The booking process was incredibly simple, and the Lamborghini was everything I wanted. LuxeDrive's attention to detail and customer service are outstanding.",
|
||||
tag: "Weekend Getaway",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/happy-successful-business-colleagues-meeting-outside_1262-21161.jpg",
|
||||
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=2",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
@@ -195,7 +195,7 @@ export default function HomePage() {
|
||||
quote: "LuxeDrive understands luxury rental. From booking to return, every detail was perfect. The Porsche was exceptional, and I felt genuinely valued as a client.",
|
||||
tag: "Business Travel",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-adult-businesswoman-balcony_1262-1758.jpg",
|
||||
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=2",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
@@ -205,7 +205,7 @@ export default function HomePage() {
|
||||
quote: "The entire experience with LuxeDrive was premium from start to finish. The Bentley was immaculate, and the service matched the quality of the vehicle.",
|
||||
tag: "Executive Rental",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-business-woman_23-2148603029.jpg",
|
||||
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=2",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
@@ -215,7 +215,7 @@ export default function HomePage() {
|
||||
quote: "I've rented luxury vehicles worldwide, but LuxeDrive stands out. The attention to detail, professionalism, and exceptional fleet make them my first choice.",
|
||||
tag: "Luxury Enthusiast",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/happy-caucasian-adult-brunette-woman-smiles-puts-her-thumb-forefinger-together-showing-that-everything-is-ok_197531-31190.jpg",
|
||||
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=3",
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
|
||||
Reference in New Issue
Block a user