Update src/app/layout.tsx

This commit is contained in:
2026-03-03 17:24:08 +00:00
parent 3c9e29a0c0
commit ae5b9bc4dc

View File

@@ -1,55 +1,20 @@
import type { Metadata } from "next";
import { Mulish } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const mulish = Mulish({
variable: "--font-mulish", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "AIFlow - Intelligent Automation Platform", description: "Transform your operations with AIFlow's AI-powered automation. Real-time analytics, smart workflows, and enterprise-grade security.", keywords: "AI automation, workflow automation, intelligent automation, business automation, AI platform", openGraph: {
title: "AIFlow - Intelligent Automation Platform", description: "Transform your operations with AIFlow's AI-powered automation platform", siteName: "AIFlow", type: "website", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARUTfDf61ekIcDAd2e7CmaPRNW/a-sleek-modern-ai-dashboard-interface-di-1772554985092-29f1b57f.png", alt: "AIFlow Dashboard"
}
]
},
twitter: {
card: "summary_large_image", title: "AIFlow - Intelligent Automation Platform", description: "AI-powered automation for enterprises. Real-time analytics, smart workflows, and 500+ integrations.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARUTfDf61ekIcDAd2e7CmaPRNW/a-sleek-modern-ai-dashboard-interface-di-1772554985092-29f1b57f.png"]
},
robots: {
index: true,
follow: true
}
};
title: "AIFlow - Intelligent Automation Platform", description: "Harness the power of AI-driven insights and real-time analytics. Monitor, analyze, and optimize your entire operation from a single intelligent dashboard."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${mulish.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1417,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}