Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b1f2522ed6 | |||
| a1b9fe3ef7 | |||
| 84ea39c8bc | |||
| 208b9cde20 | |||
| a987ce685b | |||
| 3d054bd503 | |||
| 7897a69eda |
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -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: "#" }
|
||||||
@@ -224,7 +224,7 @@ export default function LandingPage() {
|
|||||||
title="Start Your AI Journey Today"
|
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."
|
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={[
|
buttons={[
|
||||||
{ text: "Start Free Trial", href: "#" },
|
{ text: "Start Free Trial — No Credit Card", href: "#" },
|
||||||
{ text: "Schedule Demo", href: "#" }
|
{ text: "Schedule Demo", href: "#" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
@@ -242,4 +242,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user