import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import { Figtree } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const halant = Halant({ variable: "--font-halant", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); const figtree = Figtree({ variable: "--font-figtree", subsets: ["latin"], }); export const metadata: Metadata = { title: "Toyota - Premium Vehicles & Automotive Excellence", description: "Explore Toyota's innovative vehicle lineup. Experience reliability, safety, and performance across sedans, SUVs, and hybrids. Book your test drive today.", keywords: "Toyota vehicles, cars, SUVs, hybrids, automotive, reliability, test drive, dealership", metadataBase: new URL("https://toyota.example.com"), alternates: { canonical: "https://toyota.example.com", }, openGraph: { title: "Toyota - Your Trusted Automotive Partner", description: "Discover Toyota's premium vehicle lineup designed for every lifestyle. Innovation meets reliability.", url: "https://toyota.example.com", siteName: "Toyota", images: [ { url: "http://img.b2bpic.net/free-vector/business-flyer-template_23-2147996475.jpg", alt: "Toyota Premium Vehicle Showcase", }, ], type: "website", }, twitter: { card: "summary_large_image", title: "Toyota - Innovation & Reliability", description: "Experience the future of automotive excellence with Toyota's premium vehicle lineup.", images: ["http://img.b2bpic.net/free-vector/business-flyer-template_23-2147996475.jpg"], }, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}