import type { Metadata } from "next"; import { Cormorant_Garamond } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const cormorantGaramond = Cormorant_Garamond({ variable: "--font-cormorant-garamond", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); export const metadata: Metadata = { title: "Porsche 911 | The Legend of Performance and Design", description: "Experience the iconic Porsche 911. Explore performance specs, design heritage, and ownership options for the world's most legendary sports car.", keywords: "Porsche 911, luxury sports car, performance, automotive design, heritage", metadataBase: new URL("https://porsche-911.com"), alternates: { canonical: "https://porsche-911.com" }, openGraph: { title: "Porsche 911 | The Legend of Performance and Design", description: "Experience the iconic Porsche 911. Six decades of automotive excellence.", url: "https://porsche-911.com", siteName: "Porsche 911", type: "website", images: [ { url: "https://img.b2bpic.net/free-photo/beautiful-car-coastal-drive_23-2151948193.jpg", alt: "Porsche 911 Front View" } ] }, twitter: { card: "summary_large_image", title: "Porsche 911 | The Legend of Performance and Design", description: "Discover the car that redefines driving. Where performance meets timeless design.", images: ["https://img.b2bpic.net/free-photo/beautiful-car-coastal-drive_23-2151948193.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}