Update src/app/layout.tsx

This commit is contained in:
2026-03-17 11:58:28 +00:00
parent f0c78777f8
commit 00e3b24e48

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } 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 { Nunito } 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 nunito = Nunito({
variable: "--font-nunito",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Game Based Leadership Coaching | Walnut",
description: "Transform your team and career with India's top game-based leadership coaching company. Expert corporate and personal coaching for lasting happiness and performance.",
keywords: "leadership coaching, corporate coaching, happiness coaching, personal coaching, executive development",
metadataBase: new URL("https://walnut.coach"),
alternates: {
canonical: "https://walnut.coach",
},
openGraph: {
title: "Game Based Leadership Coaching | Walnut",
description: "Create happier, high-performing workplaces with expert game-based coaching programs.",
url: "https://walnut.coach",
siteName: "Walnut Coaching",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/serious-business-people-sitting-seminar_1262-15154.jpg",
alt: "Walnut Leadership Coaching",
},
],
},
twitter: {
card: "summary_large_image",
title: "Game Based Leadership Coaching | Walnut",
description: "Transform your team and career with expert game-based coaching for happiness and performance.",
images: ["http://img.b2bpic.net/free-photo/serious-business-people-sitting-seminar_1262-15154.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${nunito.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}