import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "GoGoToMe - Premium Car Rental Services", description: "Book luxury and economy cars instantly. Premium car rental with 24/7 support, transparent pricing, and 500+ vehicles in 150+ locations worldwide.", keywords: "car rental, luxury vehicles, economy cars, booking, transportation, travel", metadataBase: new URL("https://gogotome.com"), alternates: { canonical: "https://gogotome.com" }, openGraph: { title: "GoGoToMe - Premium Car Rental", description: "Reserve your perfect vehicle today with GoGoToMe car rentals.", url: "https://gogotome.com", siteName: "GoGoToMe", type: "website" }, twitter: { card: "summary_large_image", title: "GoGoToMe Car Rentals", description: "Premium car rental booking made easy" }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}