Update src/app/layout.tsx

This commit is contained in:
2026-03-12 17:07:37 +00:00
parent ea2a4dd653
commit 5ea8b68ca5

View File

@@ -1,24 +1,58 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Source_Sans_3 } 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 { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "IAEFS - Intelligent Accounting Analytics Enterprise Profit Forecasting",
description: "Advanced ML-powered financial forecasting platform for enterprise profit prediction, real-time analytics, and business intelligence. Transform accounting data into actionable insights.",
keywords: "accounting analytics, profit forecasting, machine learning, financial intelligence, business analytics, enterprise forecasting",
robots: {
index: true,
follow: true,
},
openGraph: {
title: "IAEFS - Intelligent Accounting Analytics",
description: "Enterprise profit forecasting system powered by machine learning regression models",
siteName: "Intelligent Accounting Analytics: Enterprise Profit Forecasting System",
type: "website",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqzqzcOmjChz5fpsGh2JQ2Xvk6/a-modern-clean-software-dashboard-interf-1773335193843-3c4b4eb4.png",
alt: "IAEFS Dashboard Interface",
},
],
},
twitter: {
card: "summary_large_image",
title: "IAEFS - Enterprise Profit Forecasting",
description: "Advanced ML analytics for financial forecasting and business intelligence",
images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqzqzcOmjChz5fpsGh2JQ2Xvk6/a-modern-clean-software-dashboard-interf-1773335193843-3c4b4eb4.png",
],
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +61,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${sourceSans3.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +75,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}