diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3e9a6a3..4ff9359 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,62 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Roboto } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { Outfit } from "next/font/google"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); +const outfit = Outfit({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "AgentAI - Intelligent Automation for Enterprise", description: "Transform your business with AI agents that automate complex workflows, learn from data, and deliver 24/7 productivity gains. Trusted by 500+ companies worldwide.", keywords: "AI agents, intelligent automation, business automation, AI platform, enterprise automation, machine learning", metadataBase: new URL("https://agentai.com"), - alternates: { - canonical: "https://agentai.com" - }, - openGraph: { - title: "AgentAI - Intelligent Automation Platform", description: "Next-generation AI agents for enterprise automation and productivity.", type: "website", siteName: "AgentAI", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXq2qJRTgBQudLfrbzjQWDgL8z/modern-ai-agent-dashboard-interface-with-1772749216782-e2acdafa.png", alt: "AgentAI Dashboard" - } - ] - }, - twitter: { - card: "summary_large_image", title: "AgentAI - Intelligent Automation", description: "Transform business operations with enterprise-grade AI agents.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXq2qJRTgBQudLfrbzjQWDgL8z/modern-ai-agent-dashboard-interface-with-1772749216782-e2acdafa.png" - ] - }, - robots: { - index: true, - follow: true - } -}; + title: "AgentAI - Intelligent Agents for Your Business", description: "Empower your business with AI agents that learn, adapt, and deliver results 24/7. Automate complex workflows with cutting-edge intelligent automation."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}