4 Commits

Author SHA1 Message Date
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 9 additions and 52 deletions

View File

@@ -1,62 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import { Outfit } from "next/font/google";
import { Inter } from "next/font/google"; import "@/styles/globals.css";
import { Roboto } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const outfit = Outfit({ subsets: ["latin"] });
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"],
});
export const metadata: Metadata = { 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"), 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."};
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
}
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={outfit.className}>{children}
<body
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1424,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -58,7 +58,7 @@ export default function LandingPage() {
]} ]}
mediaAnimation="slide-up" mediaAnimation="slide-up"
rating={5} rating={5}
ratingText="Trusted by 500+ Companies" ratingText="4.9/5 from 2,000+ Reviews"
buttons={[ buttons={[
{ text: "Start Free Trial", href: "#contact" }, { text: "Start Free Trial", href: "#contact" },
{ text: "View Demo", href: "#" } { text: "View Demo", href: "#" }