Update src/app/layout.tsx

This commit is contained in:
2026-03-11 15:07:06 +00:00
parent 35dfa76755
commit 792ef1b9b3

View File

@@ -1,24 +1,40 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Mulish } 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 { Mulish } 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 mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "SoftFlow - Enterprise Software Platform",
description: "Powerful software solutions for business automation, analytics, and team collaboration. Trusted by 5,000+ companies.",
keywords: "software platform, business automation, analytics, SaaS, enterprise solutions",
openGraph: {
title: "SoftFlow - Enterprise Software Platform",
description: "Powerful software solutions for business automation and growth.",
siteName: "SoftFlow",
type: "website",
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +43,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${mulish.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +57,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}