import type { Metadata } from "next"; import { Open_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"], }); export const metadata: Metadata = { title: "AgentAI - Enterprise AI Agent Automation Platform", description: "Deploy intelligent AI agents to automate complex business processes at enterprise scale. Increase efficiency, reduce costs, and accelerate growth with AgentAI's powerful automation platform.", keywords: "AI agents, automation, enterprise, workflow, business intelligence, RPA, intelligent automation", metadataBase: new URL("https://agentai.example.com"), alternates: { canonical: "https://agentai.example.com" }, openGraph: { title: "AgentAI - Enterprise AI Agent Automation Platform", description: "Deploy intelligent AI agents to automate complex business processes. Proven by 500+ enterprises.", url: "https://agentai.example.com", siteName: "AgentAI", type: "website", images: [ { url: "http://img.b2bpic.net/free-photo/representation-user-experience-interface-design_23-2150169866.jpg", alt: "AgentAI Enterprise AI Automation Platform" } ] }, twitter: { card: "summary_large_image", title: "AgentAI - Enterprise AI Agent Automation", description: "Deploy intelligent AI agents to automate complex business processes at enterprise scale.", images: ["http://img.b2bpic.net/free-photo/representation-user-experience-interface-design_23-2150169866.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}