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}