Merge version_2 into main #3
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -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: "#" }
|
||||
|
||||
Reference in New Issue
Block a user