import type { Metadata } from "next"; import { Libre_Baskerville } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const libreBaskerville = Libre_Baskerville({ variable: "--font-libre-baskerville", subsets: ["latin"], weight: ["400", "700"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "AISync - Enterprise AI Platform for Intelligent Automation", description: "Transform your business with AISync. Advanced AI platform for real-time analytics, predictive insights, and enterprise automation. Start free today.", keywords: "AI platform, machine learning, enterprise automation, analytics, artificial intelligence software", metadataBase: new URL("https://aisync.ai"), alternates: { canonical: "https://aisync.ai"}, openGraph: { title: "AISync - Enterprise AI Platform", description: "Intelligent automation and predictive analytics for modern enterprises.", url: "https://aisync.ai", siteName: "AISync", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AagxSEg1eTNpYlZtzQ2LO28ff5/a-sleek-modern-ai-platform-dashboard-int-1772836414184-46a01b46.png", alt: "AISync Platform Dashboard"}, ], type: "website"}, twitter: { card: "summary_large_image", title: "AISync - Enterprise AI Platform", description: "Intelligent automation and predictive analytics for modern enterprises.", images: [ "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AagxSEg1eTNpYlZtzQ2LO28ff5/a-sleek-modern-ai-platform-dashboard-int-1772836414184-46a01b46.png"], }, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}