Update src/app/layout.tsx

This commit is contained in:
2026-03-11 19:12:40 +00:00
parent d190d7de7a
commit 39000a1aa5

View File

@@ -1,18 +1,22 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Inter_Tight } 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 { Inter_Tight } 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 interTight = Inter_Tight({
variable: "--font-inter-tight",
@@ -20,6 +24,39 @@ const interTight = Inter_Tight({
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
title: "Keshav Enterprise | Reliable Export Partner from India to Global Markets",
description: "Industrial chemicals & furniture hardware exporter from India to Kenya & Africa. Udyam registered trading company with 3+ years export experience. Request quotation today.",
keywords: "chemical exporter India, hardware exporter India, export supplier Kenya, furniture hardware exporter, import supplier Africa, Indian trading company",
metadataBase: new URL("https://www.keshavexport.com"),
alternates: {
canonical: "https://www.keshavexport.com",
},
robots: {
index: true,
follow: true,
},
openGraph: {
title: "Keshav Enterprise | Export Trading Company India",
description: "Reliable export partner connecting Indian quality to global markets. Certified, compliant, trusted.",
url: "https://www.keshavexport.com",
siteName: "Keshav Enterprise",
type: "website",
images: [
{
url: "https://www.keshavexport.com/og-image.jpg",
alt: "Keshav Enterprise - Global Export Trading Partner",
},
],
},
twitter: {
card: "summary_large_image",
title: "Keshav Enterprise | Export Trading Company",
description: "Reliable export partner connecting Indian quality to global markets.",
images: ["https://www.keshavexport.com/twitter-image.jpg"],
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -28,7 +65,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${interTight.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -40,4 +79,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}