Update src/app/layout.tsx

This commit is contained in:
2026-03-10 16:08:28 +00:00
parent 250fc205ec
commit ccda64d44d

View File

@@ -1,24 +1,58 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { DM_Sans } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "OpenFlow AI - Deploy AI Agents in 10 Minutes | Enterprise SaaS",
description: "Deploy AI chatbot agents across HR, IT, and Finance in under 10 minutes. Automate employee questions, eliminate repetitive support, reduce overhead with no-code setup.",
keywords: "AI chatbot, enterprise SaaS, HR automation, IT support automation, Finance automation, employee support, no-code AI",
openGraph: {
title: "OpenFlow AI - Deploy AI Agents in 10 Minutes",
description: "Deploy AI chatbot agents across HR, IT, and Finance in under 10 minutes. Automate employee questions, eliminate repetitive support.",
type: "website",
siteName: "OpenFlow AI",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al5lXq4FuvVTsncx15643rVlte/a-modern-clean-saas-dashboard-interface--1773158843938-5f63f61a.jpg",
alt: "OpenFlow AI Dashboard - AI Agent Deployment Platform",
},
],
},
twitter: {
card: "summary_large_image",
title: "OpenFlow AI - Deploy AI Agents in 10 Minutes",
description: "Enterprise-grade AI chatbot agents for HR, IT, and Finance. No code. No engineers. Instant deployment.",
images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Al5lXq4FuvVTsncx15643rVlte/a-modern-clean-saas-dashboard-interface--1773158843938-5f63f61a.jpg",
],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +61,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +75,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}