import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "AIFlow - Enterprise AI Platform for Modern Business", description: "Transform your enterprise with AIFlow's advanced AI platform. Automate processes, gain insights, and stay ahead of competition. Trusted by 500+ companies.", keywords: ["AI platform", "enterprise software", "machine learning", "business automation", "artificial intelligence", "predictive analytics"], metadataBase: new URL("https://aiflow.com"), alternates: { canonical: "https://aiflow.com" }, openGraph: { title: "AIFlow - Enterprise AI Solutions", description: "Unlock unprecedented efficiency with enterprise-grade AI designed for your business.", siteName: "AIFlow", type: "website", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-modern-sleek-ai-software-dashboard-int-1772134342996-3a041ecf.png", alt: "AIFlow Dashboard" } ] }, twitter: { card: "summary_large_image", title: "AIFlow - Enterprise AI Platform", description: "Transform your enterprise with AI. Automate, analyze, and accelerate growth.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-modern-sleek-ai-software-dashboard-int-1772134342996-3a041ecf.png"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}