8 Commits

Author SHA1 Message Date
cf12799aea Merge version_3 into main
Merge version_3 into main
2026-03-05 22:27:42 +00:00
b1f2522ed6 Update src/app/page.tsx 2026-03-05 22:27:38 +00:00
a1b9fe3ef7 Update src/app/layout.tsx 2026-03-05 22:27:37 +00:00
84ea39c8bc Merge version_2 into main
Merge version_2 into main
2026-03-05 22:25:29 +00:00
208b9cde20 Update src/app/page.tsx 2026-03-05 22:25:25 +00:00
a987ce685b Update src/app/layout.tsx 2026-03-05 22:25:25 +00:00
3d054bd503 Merge version_1 into main
Merge version_1 into main
2026-03-05 22:23:15 +00:00
7897a69eda Merge version_1 into main
Merge version_1 into main
2026-03-05 22:22:04 +00:00
2 changed files with 12 additions and 55 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={outfit.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1424,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -58,7 +58,7 @@ export default function LandingPage() {
]}
mediaAnimation="slide-up"
rating={5}
ratingText="Trusted by 500+ Companies"
ratingText="4.9/5 from 2,000+ Reviews"
buttons={[
{ text: "Start Free Trial", href: "#contact" },
{ text: "View Demo", href: "#" }
@@ -224,7 +224,7 @@ export default function LandingPage() {
title="Start Your AI Journey Today"
description="Join forward-thinking companies already leveraging AI agents to drive unprecedented growth. Get started with a free trial or speak with our team about your specific needs."
buttons={[
{ text: "Start Free Trial", href: "#" },
{ text: "Start Free Trial — No Credit Card", href: "#" },
{ text: "Schedule Demo", href: "#" }
]}
buttonAnimation="slide-up"
@@ -242,4 +242,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}