diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 42fa6ab..c1a6bd5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}