Merge version_2 into main #2
@@ -1,57 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Mulish } from "next/font/google";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const mulish = Mulish({
|
||||
variable: "--font-mulish", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "OpenClaw AI | Autonomous Business Agents for Enterprise", description: "Deploy autonomous AI agents for ERP, CRM, PoS, and analytics. Like Odoo, but with intelligent agents that work autonomously. Used by 2,000+ enterprises.", keywords: "AI agents, business automation, ERP, CRM, PoS, autonomous systems, enterprise software, AI automation", metadataBase: new URL("https://openclaw-ai.com"),
|
||||
alternates: {
|
||||
canonical: "https://openclaw-ai.com"},
|
||||
openGraph: {
|
||||
title: "OpenClaw AI | Autonomous Business Agents", description: "Deploy intelligent AI agents to automate enterprise operations. Autonomous ERP, CRM, PoS, and analytics agents working for you 24/7.", url: "https://openclaw-ai.com", siteName: "OpenClaw AI", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AW4c9NnAlrPJEooeAmTx61YxB3/a-sleek-modern-ai-dashboard-interface-sh-1772771860190-deeadbb7.png", alt: "OpenClaw AI Dashboard Interface"},
|
||||
],
|
||||
type: "website"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "OpenClaw AI | Autonomous Business Agents for Enterprise", description: "Autonomous AI agents that manage your business. ERP, CRM, PoS, and analytics agents working autonomously.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AW4c9NnAlrPJEooeAmTx61YxB3/a-sleek-modern-ai-dashboard-interface-sh-1772771860190-deeadbb7.png"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "OpenClaw AI", description: "Autonomous AI Agents for Enterprise Business"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1419,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -44,7 +44,7 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitTestimonial
|
||||
title="Autonomous AI Agents for Enterprise Business"
|
||||
title="Automate 75% of Business Tasks Without New Hires"
|
||||
description="Deploy intelligent agents powered by OpenClaw to automate complex business tasks across ERP, CRM, PoS, and more. Like Odoo, but with autonomous AI that thinks and acts for you."
|
||||
tag="AI-Powered Automation"
|
||||
tagIcon={Zap}
|
||||
|
||||
Reference in New Issue
Block a user