Update src/app/layout.tsx

This commit is contained in:
2026-03-07 11:38:19 +00:00
parent 7d340fbd43
commit 38ee20fc9d

View File

@@ -1,57 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Montserrat } 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 inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
});
const inter = Inter({ variable: "--font-inter", subsets: ["latin"] });
export const metadata: Metadata = {
title: "AI WorkFlow - Enterprise Automation Platform", description: "Automate workflows and unlock AI insights for enterprise operations. See measurable ROI in weeks. Start your free trial today.", keywords: "AI automation, enterprise software, workflow optimization, business automation, artificial intelligence", metadataBase: new URL("https://aiworkflow.example.com"),
alternates: {
canonical: "https://aiworkflow.example.com"},
openGraph: {
title: "AI WorkFlow - Enterprise Automation Platform", description: "Transform your operations with AI automation. Reduce costs by 68% and achieve ROI in just 4 weeks.", url: "https://aiworkflow.example.com", siteName: "AI WorkFlow", type: "website", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcCjReQmbKun1Ld66jrs2rWw8W/a-modern-sophisticated-ai-dashboard-inte-1772882685187-c831ae10.png", alt: "AI WorkFlow Dashboard"},
],
},
twitter: {
card: "summary_large_image", title: "AI WorkFlow - Enterprise AI Automation", description: "Automate complex workflows and see measurable results in weeks.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcCjReQmbKun1Ld66jrs2rWw8W/a-modern-sophisticated-ai-dashboard-inte-1772882685187-c831ae10.png"],
},
robots: {
index: true,
follow: true,
},
};
title: "AI WorkFlow - Enterprise AI Automation", description: "Automate complex workflows and unlock insights with enterprise-grade AI automation. See measurable results in weeks."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.variable}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}