diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 759e10d..71f8d65 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-