diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 5a8a3f6..d8928fb 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-
-
-
- {children}
-
+
+ {children}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index db8efbd..3f3b94a 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -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() {