78 lines
2.6 KiB
TypeScript
78 lines
2.6 KiB
TypeScript
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";
|
|
|
|
const halant = Halant({
|
|
variable: "--font-halant",
|
|
subsets: ["latin"],
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
});
|
|
|
|
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<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body
|
|
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
|
|
>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
} |