Merge version_2 into main #4
@@ -1,54 +1,23 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Raleway } from "next/font/google";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Poppins } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const raleway = Raleway({
|
||||
variable: "--font-raleway", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
const poppins = Poppins({
|
||||
weight: ["400", "500", "600", "700"],
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Promia - Premium Car Rental Service", description: "Rent premium vehicles with Promia. Easy WhatsApp booking, competitive pricing, and 24/7 support. Your perfect rental car awaits.", keywords: "car rental, premium vehicles, WhatsApp booking, affordable rates, luxury cars", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Promia - Premium Car Rental Service", description: "Experience luxury car rentals with Promia. Simple booking, great prices, trusted service.", type: "website", siteName: "Promia", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/young-couple-choosing-car-car-showroom_1303-22834.jpg", alt: "Promia Premium Rental Car"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Promia - Premium Car Rental Service", description: "Book your perfect rental car on WhatsApp with Promia", images: ["http://img.b2bpic.net/free-photo/young-couple-choosing-car-car-showroom_1303-22834.jpg"],
|
||||
},
|
||||
};
|
||||
title: "Promia - Premium Car Rental Service", description: "Book luxury rental cars with insurance, 24/7 support, and flexible cancellation. Premium vehicles at competitive prices."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${raleway.variable} ${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={poppins.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1416,7 +1385,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -54,10 +54,12 @@ export default function LandingPage() {
|
||||
testimonials={[
|
||||
{
|
||||
name: "Sarah Johnson", handle: "Business Executive", testimonial: "Promia made my business trips effortless. Great cars, professional service!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg?_wi=1"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg?_wi=1"
|
||||
},
|
||||
{
|
||||
name: "Michael Chen", handle: "Tourist", testimonial: "Best rental experience ever. Easy booking and immaculate vehicles!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1"
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
{ text: "Book Now on WhatsApp", href: "https://wa.me/21629205888" },
|
||||
@@ -76,9 +78,11 @@ export default function LandingPage() {
|
||||
tagAnimation="slide-up"
|
||||
features={[
|
||||
{
|
||||
title: "Wide Fleet Selection", description: "Choose from economy cars to luxury sedans and spacious SUVs.", bentoComponent: "globe"},
|
||||
title: "Wide Fleet Selection", description: "Choose from economy cars to luxury sedans and spacious SUVs.", bentoComponent: "globe"
|
||||
},
|
||||
{
|
||||
title: "Competitive Pricing", description: "Transparent rates with no hidden charges. Best value guaranteed.", bentoComponent: "animated-bar-chart"},
|
||||
title: "Competitive Pricing", description: "Transparent rates with no hidden charges. Best value guaranteed.", bentoComponent: "animated-bar-chart"
|
||||
},
|
||||
{
|
||||
title: "24/7 Support", description: "Round-the-clock customer support via WhatsApp and phone.", bentoComponent: "icon-info-cards", items: [
|
||||
{ icon: Phone, label: "Phone Support", value: "Available" },
|
||||
@@ -91,9 +95,11 @@ export default function LandingPage() {
|
||||
variant: "text", texts: ["Quick Booking", "Flexible Dates", "Instant Confirmation"],
|
||||
},
|
||||
{
|
||||
title: "Well-Maintained Vehicles", description: "All cars undergo regular maintenance and quality checks.", bentoComponent: "map"},
|
||||
title: "Well-Maintained Vehicles", description: "All cars undergo regular maintenance and quality checks.", bentoComponent: "map"
|
||||
},
|
||||
{
|
||||
title: "Flexible Terms", description: "Rental periods from hours to months. Choose what suits you.", bentoComponent: "line-chart"},
|
||||
title: "Flexible Terms", description: "Rental periods from hours to months. Choose what suits you.", bentoComponent: "line-chart"
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
@@ -107,7 +113,7 @@ export default function LandingPage() {
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardOne
|
||||
title="Simple, Transparent Pricing"
|
||||
description="Choose the perfect plan for your rental needs. All prices include insurance and 24/7 support."
|
||||
description="Choose the perfect plan for your rental needs. All prices include insurance, 24/7 support, and flexible cancellation for peace of mind."
|
||||
tag="Our Plans"
|
||||
tagIcon={CreditCard}
|
||||
tagAnimation="slide-up"
|
||||
@@ -115,17 +121,20 @@ export default function LandingPage() {
|
||||
{
|
||||
id: "economy", badge: "Budget Friendly", badgeIcon: Zap,
|
||||
price: "From 25 TND/day", subtitle: "Perfect for city travel", features: [
|
||||
"Fuel efficient vehicles", "Basic insurance included", "Unlimited mileage", "Free WiFi hotspot", "24/7 roadside assistance"],
|
||||
"Fuel efficient vehicles", "Basic insurance included", "Unlimited mileage", "Free WiFi hotspot", "24/7 roadside assistance"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "premium", badge: "Most Popular", badgeIcon: Star,
|
||||
price: "From 60 TND/day", subtitle: "Premium comfort and style", features: [
|
||||
"Luxury sedans and coupes", "Comprehensive coverage", "Unlimited mileage", "Premium WiFi hotspot", "Chauffeur service available", "Airport pickup included"],
|
||||
"Luxury sedans and coupes", "Comprehensive coverage", "Unlimited mileage", "Premium WiFi hotspot", "Chauffeur service available", "Airport pickup included"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "family", badge: "Best Value", badgeIcon: Users,
|
||||
price: "From 80 TND/day", subtitle: "Ideal for family trips", features: [
|
||||
"Spacious SUVs and vans", "Full coverage insurance", "Unlimited mileage", "Child seat options", "Luggage assistance", "Family-friendly support"],
|
||||
"Spacious SUVs and vans", "Full coverage insurance", "Unlimited mileage", "Child seat options", "Luggage assistance", "Family-friendly support"
|
||||
],
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
@@ -146,13 +155,17 @@ export default function LandingPage() {
|
||||
tagAnimation="slide-up"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", title: "Exceptional Service and Fleet Quality", quote: "I've rented from Promia three times now. Every experience has been flawless. The cars are immaculate, the booking process is smooth, and the team is always helpful.", name: "Sarah Johnson", role: "Business Professional", imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg?_wi=2"},
|
||||
id: "1", title: "Exceptional Service and Fleet Quality", quote: "I've rented from Promia three times now. Every experience has been flawless. The cars are immaculate, the booking process is smooth, and the team is always helpful.", name: "Sarah Johnson", role: "Business Professional", imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg?_wi=2"
|
||||
},
|
||||
{
|
||||
id: "2", title: "Perfect for My Family Vacation", quote: "Promia made our family trip memorable. We rented a spacious SUV, the kids loved it, and the pricing was very reasonable.", name: "Michael Chen", role: "Family Traveler", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=2"},
|
||||
id: "2", title: "Perfect for My Family Vacation", quote: "Promia made our family trip memorable. We rented a spacious SUV, the kids loved it, and the pricing was very reasonable.", name: "Michael Chen", role: "Family Traveler", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=2"
|
||||
},
|
||||
{
|
||||
id: "3", title: "Best Rental Experience Ever", quote: "From WhatsApp booking to vehicle delivery, everything was perfect. Professional, courteous, and reliable. Highly recommended!", name: "Emily Rodriguez", role: "Tourist", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-short-curly-hair-colorful-shirt-smiling-broadly-hugging-herself-standing-green-wall_141793-29368.jpg"},
|
||||
id: "3", title: "Best Rental Experience Ever", quote: "From WhatsApp booking to vehicle delivery, everything was perfect. Professional, courteous, and reliable. Highly recommended!", name: "Emily Rodriguez", role: "Tourist", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-short-curly-hair-colorful-shirt-smiling-broadly-hugging-herself-standing-green-wall_141793-29368.jpg"
|
||||
},
|
||||
{
|
||||
id: "4", title: "Outstanding Customer Support", quote: "The team went above and beyond to help me. When I had an issue mid-trip, they resolved it immediately. True professionalism.", name: "David Kim", role: "Corporate Client", imageSrc: "http://img.b2bpic.net/free-photo/confident-european-businessman-smiling-closeup-portrait-jobs-career-campaign_53876-128975.jpg"},
|
||||
id: "4", title: "Outstanding Customer Support", quote: "The team went above and beyond to help me. When I had an issue mid-trip, they resolved it immediately. True professionalism.", name: "David Kim", role: "Corporate Client", imageSrc: "http://img.b2bpic.net/free-photo/confident-european-businessman-smiling-closeup-portrait-jobs-career-campaign_53876-128975.jpg"
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
|
||||
Reference in New Issue
Block a user