From 1ad6d544ddc4ebc881dc632505a5004e1a87b087 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 18:41:38 +0000 Subject: [PATCH 1/5] Update src/app/exchange/page.tsx --- src/app/exchange/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/exchange/page.tsx b/src/app/exchange/page.tsx index 986cf81..6b4e408 100644 --- a/src/app/exchange/page.tsx +++ b/src/app/exchange/page.tsx @@ -93,28 +93,28 @@ export default function ExchangePage() { id: "1", name: "Elena Rodriguez", role: "Sunny Hill Apiary", - imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-outdoors-carrying-guitar_23-2148629827.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-outdoors-carrying-guitar_23-2148629827.jpg?_wi=2", imageAlt: "Elena Rodriguez, owner of Sunny Hill Apiary", }, { id: "2", name: "James Mitchell", role: "Meadow Creek Beekeepers", - imageSrc: "http://img.b2bpic.net/free-photo/people-helping-each-other-community_23-2149139746.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/people-helping-each-other-community_23-2149139746.jpg?_wi=2", imageAlt: "James Mitchell, founder of Meadow Creek Beekeepers", }, { id: "3", name: "Anna Bergman", role: "Alpine Forest Honey", - imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-holding-axe-outdoors_23-2149382182.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-holding-axe-outdoors_23-2149382182.jpg?_wi=2", imageAlt: "Anna Bergman, beekeeper at Alpine Forest", }, { id: "4", name: "Sophie Laurent", role: "Lavender Dreams Farm", - imageSrc: "http://img.b2bpic.net/free-photo/blonde-young-woman-smelling-lavender-flowers-crate_23-2148066845.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/blonde-young-woman-smelling-lavender-flowers-crate_23-2148066845.jpg?_wi=2", imageAlt: "Sophie Laurent, owner of Lavender Dreams Farm", }, ]} @@ -165,7 +165,7 @@ export default function ExchangePage() { tagAnimation="slide-up" background={{ variant: "plain" }} useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/delicious-kombucha-glass-pineapple-arrangement_23-2149757700.jpg" + imageSrc="http://img.b2bpic.net/free-photo/delicious-kombucha-glass-pineapple-arrangement_23-2149757700.jpg?_wi=4" imageAlt="Premium honey collection in sunlight" mediaAnimation="slide-up" mediaPosition="right" -- 2.49.1 From 26fea502dfe1082747f1cd18da0cfd26463013ed Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 18:41:38 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 32671a1..bc94f96 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}