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: "LogiSync AI - Intelligent Logistics Platform", description: "AI-powered logistics platform optimizing supply chains with real-time tracking, predictive analytics, and route optimization for enterprises worldwide.", keywords: "AI logistics, supply chain optimization, route planning, predictive analytics, warehouse automation, fleet management", metadataBase: new URL("https://logisync.ai"), alternates: { canonical: "https://logisync.ai" }, robots: { index: true, follow: true }, openGraph: { type: "website", siteName: "LogiSync AI", title: "LogiSync AI - Intelligent Logistics Platform", description: "Transform your supply chain with AI-powered optimization and real-time tracking.", url: "https://logisync.ai", images: [{ url: "https://logisync.ai/og-image.jpg", alt: "LogiSync AI Platform" }] }, twitter: { card: "summary_large_image", title: "LogiSync AI - Intelligent Logistics Platform", description: "AI-powered supply chain optimization and real-time tracking for enterprises.", images: ["https://logisync.ai/twitter-image.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}