Update src/app/layout.tsx

This commit is contained in:
2026-03-11 18:41:38 +00:00
parent 1ad6d544dd
commit 26fea502df

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } 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 { Open_Sans } 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 openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "HoneyMarket | Pure Artisanal Honey from Independent Beekeepers",
description: "Discover premium, raw honey directly from independent beekeepers. Shop pure acacia, wildflower, forest, lavender, and manuka honey with health benefits and authentic taste.",
keywords: "raw honey, artisanal honey, pure honey, organic honey, beekeepers marketplace, honey delivery, healthy sweetener",
metadataBase: new URL("https://honeymarket.com"),
alternates: {
canonical: "https://honeymarket.com",
},
openGraph: {
title: "HoneyMarket | Pure Honey from Independent Beekeepers",
description: "Explore a curated marketplace of premium, raw honey directly from sustainable family farms and independent beekeepers worldwide.",
url: "https://honeymarket.com",
siteName: "HoneyMarket",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/high-angle-assortment-with-baked-food-jam-jar_23-2148234342.jpg",
alt: "Premium honey collection",
},
],
},
twitter: {
card: "summary_large_image",
title: "HoneyMarket | Premium Artisanal Honey",
description: "Pure, raw honey from independent beekeepers. Direct to your table.",
images: ["http://img.b2bpic.net/free-photo/high-angle-assortment-with-baked-food-jam-jar_23-2148234342.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={`${openSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}