diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 66d578d..51ecf78 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1435 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Lato } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const lato = Lato({ - variable: "--font-lato", - subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Mono Agent - AI-Powered Automation Platform", - description: "Mono Agent is an intelligent automation platform that uses AI to execute complex workflows autonomously. Scale your business with advanced automation, real-time analytics, and enterprise-grade security.", - keywords: "AI automation, intelligent agents, workflow automation, RPA, business automation, SaaS", - metadataBase: new URL("https://monoagent.ai"), - alternates: { - canonical: "https://monoagent.ai", - }, - openGraph: { - title: "Mono Agent - Intelligent Automation at Scale", - description: "Transform your business with AI-powered automation that learns, adapts, and scales.", - url: "https://monoagent.ai", - siteName: "Mono Agent", - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "Mono Agent - AI Automation Platform", - description: "Intelligent automation for enterprise teams", - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Mono Agent - AI-Powered Automation Platform", description: "Intelligent automation at scale. Mono Agent is an advanced AI-powered automation platform that understands your workflows, learns your patterns, and executes complex tasks autonomously."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -