From 5d7d9e6d701863bdb4330ad92b096010993fda0c Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Feb 2026 05:12:13 +0000 Subject: [PATCH 1/6] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index ca557a4..9918a92 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -102,4 +102,4 @@ export default function BlogPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 829e28d3dbcf3b12c5fdb810dc3ee2416308d0f3 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Feb 2026 05:12:14 +0000 Subject: [PATCH 2/6] Update src/app/layout.tsx --- src/app/layout.tsx | 132 +++++++++++++++++++++++---------------------- 1 file changed, 69 insertions(+), 63 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2b1ffe3..d2dc9ef 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,48 +1,25 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; - - -export const metadata: Metadata = { - title: "AI Agents Platform | Intelligent Automation for Enterprise", description: "Deploy autonomous AI agents to automate complex workflows, reduce costs, and accelerate business growth. Start your free trial today.", keywords: "AI agents, automation, intelligent automation, machine learning, business automation, workflow automation, enterprise AI, no-code automation", robots: { - index: true, - follow: true - }, - openGraph: { - title: "AI Agents Platform | Intelligent Automation for Enterprise", description: "Deploy autonomous AI agents to automate complex workflows, reduce costs, and accelerate business growth.", type: "website", siteName: "AIAgents", images: [{ - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-sleek-dark-themed-ai-agent-dashboard-i-1772135146014-9f93f466.png", alt: "AI Agents Platform Dashboard" - }] - }, - twitter: { - card: "summary_large_image", title: "AI Agents Platform | Intelligent Automation", description: "Deploy autonomous AI agents to automate complex workflows and reduce operational costs.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-sleek-dark-themed-ai-agent-dashboard-i-1772135146014-9f93f466.png"] - } -}; +import "./styles/variables.css"; +import "./globals.css"; const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); -const openSans = Open_Sans({ - variable: "--font-open-sans", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "AIAgents - Intelligent Automation Platform", description: "Deploy autonomous AI agents that learn and adapt to transform your business operations."}; + export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +