Merge version_1 into main #1
@@ -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"
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -95,7 +95,7 @@ export default function LearnPage() {
|
||||
category: "Honey Types",
|
||||
title: "The Complete Guide to Honey Varieties",
|
||||
excerpt: "Discover the distinct characteristics, flavors, and health benefits of different honey types from around the world",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-bee-pollens-honey-white-tray-yellow-background_23-2147918986.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-bee-pollens-honey-white-tray-yellow-background_23-2147918986.jpg?_wi=2",
|
||||
imageAlt: "Various honey types display jars collection",
|
||||
authorName: "Dr. Sarah Chen",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/smiley-female-doctor-posing-suit-stethoscope_23-2149014356.jpg",
|
||||
@@ -106,7 +106,7 @@ export default function LearnPage() {
|
||||
category: "Beekeeping",
|
||||
title: "How Honey is Made: From Flower to Jar",
|
||||
excerpt: "Explore the fascinating process of honey production, from nectar collection to hive fermentation and harvesting",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/three-beekeeping-banner-set_1284-11016.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/three-beekeeping-banner-set_1284-11016.jpg?_wi=2",
|
||||
imageAlt: "Beekeeping process honeycomb bees illustration",
|
||||
authorName: "Marcus Thompson",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/vertical-portrait-young-attractive-bearded-dark-skinned-farmer-blue-t-shirt-with-garden-tools-holding-hands-crossed-looking-aside-with-confident-face-expression_176420-19901.jpg",
|
||||
@@ -117,7 +117,7 @@ export default function LearnPage() {
|
||||
category: "Health Benefits",
|
||||
title: "Raw Honey: Nature's Superfood Benefits",
|
||||
excerpt: "Uncover the science behind raw honey's antibacterial, antioxidant, and therapeutic properties for wellness",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/aromatic-tea-with-lemon-desk_23-2148550506.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/aromatic-tea-with-lemon-desk_23-2148550506.jpg?_wi=2",
|
||||
imageAlt: "Raw honey health benefits spoon presentation",
|
||||
authorName: "Elena Rodriguez",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/happy-young-lady-standing-greenhouse-holding-clipboard_171337-6897.jpg",
|
||||
@@ -128,7 +128,7 @@ export default function LearnPage() {
|
||||
category: "Nutrition",
|
||||
title: "Honey vs. Sugar: The Nutritional Comparison",
|
||||
excerpt: "Compare honey and sugar nutritionally and understand why honey is a superior sweetener choice",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-tasty-gourmet-snack-with-honey_23-2148430133.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-tasty-gourmet-snack-with-honey_23-2148430133.jpg?_wi=2",
|
||||
imageAlt: "Honey versus sugar comparison natural",
|
||||
authorName: "Dr. James Mitchell",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/smiling-baker-bakery_1170-2306.jpg",
|
||||
@@ -182,7 +182,7 @@ export default function LearnPage() {
|
||||
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=3"
|
||||
imageAlt="Premium honey collection in sunlight"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -150,7 +150,7 @@ export default function HomePage() {
|
||||
price: "$24.99",
|
||||
rating: 5,
|
||||
reviewCount: "342",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/glass-jar-full-honey-with-honey-spoon_23-2148173079.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/glass-jar-full-honey-with-honey-spoon_23-2148173079.jpg?_wi=1",
|
||||
imageAlt: "Pure acacia honey in premium glass jar",
|
||||
},
|
||||
{
|
||||
@@ -160,7 +160,7 @@ export default function HomePage() {
|
||||
price: "$26.99",
|
||||
rating: 5,
|
||||
reviewCount: "287",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/jar-sweet-honey-flowers-desk_23-2147938089.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/jar-sweet-honey-flowers-desk_23-2147938089.jpg?_wi=1",
|
||||
imageAlt: "Wildflower honey with natural honeycomb",
|
||||
},
|
||||
{
|
||||
@@ -170,7 +170,7 @@ export default function HomePage() {
|
||||
price: "$28.99",
|
||||
rating: 5,
|
||||
reviewCount: "215",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-beautiful-delicate-flower_23-2147831023.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-beautiful-delicate-flower_23-2147831023.jpg?_wi=1",
|
||||
imageAlt: "Raw forest honey with organic texture",
|
||||
},
|
||||
{
|
||||
@@ -180,7 +180,7 @@ export default function HomePage() {
|
||||
price: "$29.99",
|
||||
rating: 5,
|
||||
reviewCount: "198",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-honey-white-wooden-surface_1150-42245.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-honey-white-wooden-surface_1150-42245.jpg?_wi=1",
|
||||
imageAlt: "Lavender honey with purple floral notes",
|
||||
},
|
||||
{
|
||||
@@ -190,7 +190,7 @@ export default function HomePage() {
|
||||
price: "$31.99",
|
||||
rating: 5,
|
||||
reviewCount: "176",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/honey-jars-with-honeycomb_95678-373.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/honey-jars-with-honeycomb_95678-373.jpg?_wi=1",
|
||||
imageAlt: "Premium chestnut honey with rich amber color",
|
||||
},
|
||||
{
|
||||
@@ -200,7 +200,7 @@ export default function HomePage() {
|
||||
price: "$45.99",
|
||||
rating: 5,
|
||||
reviewCount: "412",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/decorative-wedding-template-art-deco-design_23-2147958614.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/decorative-wedding-template-art-deco-design_23-2147958614.jpg?_wi=1",
|
||||
imageAlt: "Manuka honey with therapeutic properties",
|
||||
},
|
||||
]}
|
||||
@@ -267,28 +267,28 @@ export default function HomePage() {
|
||||
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=1",
|
||||
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=1",
|
||||
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=1",
|
||||
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=1",
|
||||
imageAlt: "Sophie Laurent, owner of Lavender Dreams Farm",
|
||||
},
|
||||
]}
|
||||
@@ -347,7 +347,7 @@ export default function HomePage() {
|
||||
category: "Honey Types",
|
||||
title: "The Complete Guide to Honey Varieties",
|
||||
excerpt: "Discover the distinct characteristics, flavors, and health benefits of different honey types from around the world",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-bee-pollens-honey-white-tray-yellow-background_23-2147918986.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-bee-pollens-honey-white-tray-yellow-background_23-2147918986.jpg?_wi=1",
|
||||
imageAlt: "Various honey types display",
|
||||
authorName: "Dr. Sarah Chen",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/smiley-female-doctor-posing-suit-stethoscope_23-2149014356.jpg",
|
||||
@@ -358,7 +358,7 @@ export default function HomePage() {
|
||||
category: "Beekeeping",
|
||||
title: "How Honey is Made: From Flower to Jar",
|
||||
excerpt: "Explore the fascinating process of honey production, from nectar collection to hive fermentation and harvesting",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/three-beekeeping-banner-set_1284-11016.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/three-beekeeping-banner-set_1284-11016.jpg?_wi=1",
|
||||
imageAlt: "Beekeeping process illustration",
|
||||
authorName: "Marcus Thompson",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/vertical-portrait-young-attractive-bearded-dark-skinned-farmer-blue-t-shirt-with-garden-tools-holding-hands-crossed-looking-aside-with-confident-face-expression_176420-19901.jpg",
|
||||
@@ -369,7 +369,7 @@ export default function HomePage() {
|
||||
category: "Health Benefits",
|
||||
title: "Raw Honey: Nature's Superfood Benefits",
|
||||
excerpt: "Uncover the science behind raw honey's antibacterial, antioxidant, and therapeutic properties for wellness",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/aromatic-tea-with-lemon-desk_23-2148550506.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/aromatic-tea-with-lemon-desk_23-2148550506.jpg?_wi=1",
|
||||
imageAlt: "Raw honey health benefits",
|
||||
authorName: "Elena Rodriguez",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/happy-young-lady-standing-greenhouse-holding-clipboard_171337-6897.jpg",
|
||||
@@ -380,7 +380,7 @@ export default function HomePage() {
|
||||
category: "Nutrition",
|
||||
title: "Honey vs. Sugar: The Nutritional Comparison",
|
||||
excerpt: "Compare honey and sugar nutritionally and understand why honey is a superior sweetener choice",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-tasty-gourmet-snack-with-honey_23-2148430133.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-tasty-gourmet-snack-with-honey_23-2148430133.jpg?_wi=1",
|
||||
imageAlt: "Honey and sugar comparison",
|
||||
authorName: "Dr. James Mitchell",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/smiling-baker-bakery_1170-2306.jpg",
|
||||
@@ -399,7 +399,7 @@ export default function HomePage() {
|
||||
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=1"
|
||||
imageAlt="Premium honey collection in sunlight"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -96,7 +96,7 @@ export default function ProductsPage() {
|
||||
price: "$24.99",
|
||||
rating: 5,
|
||||
reviewCount: "342",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/glass-jar-full-honey-with-honey-spoon_23-2148173079.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/glass-jar-full-honey-with-honey-spoon_23-2148173079.jpg?_wi=2",
|
||||
imageAlt: "Pure acacia honey in premium glass jar",
|
||||
},
|
||||
{
|
||||
@@ -106,7 +106,7 @@ export default function ProductsPage() {
|
||||
price: "$26.99",
|
||||
rating: 5,
|
||||
reviewCount: "287",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/jar-sweet-honey-flowers-desk_23-2147938089.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/jar-sweet-honey-flowers-desk_23-2147938089.jpg?_wi=2",
|
||||
imageAlt: "Wildflower honey with natural honeycomb",
|
||||
},
|
||||
{
|
||||
@@ -116,7 +116,7 @@ export default function ProductsPage() {
|
||||
price: "$28.99",
|
||||
rating: 5,
|
||||
reviewCount: "215",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-beautiful-delicate-flower_23-2147831023.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-beautiful-delicate-flower_23-2147831023.jpg?_wi=2",
|
||||
imageAlt: "Raw forest honey with organic texture",
|
||||
},
|
||||
{
|
||||
@@ -126,7 +126,7 @@ export default function ProductsPage() {
|
||||
price: "$29.99",
|
||||
rating: 5,
|
||||
reviewCount: "198",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-honey-white-wooden-surface_1150-42245.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-honey-white-wooden-surface_1150-42245.jpg?_wi=2",
|
||||
imageAlt: "Lavender honey with purple floral notes",
|
||||
},
|
||||
{
|
||||
@@ -136,7 +136,7 @@ export default function ProductsPage() {
|
||||
price: "$31.99",
|
||||
rating: 5,
|
||||
reviewCount: "176",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/honey-jars-with-honeycomb_95678-373.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/honey-jars-with-honeycomb_95678-373.jpg?_wi=2",
|
||||
imageAlt: "Premium chestnut honey with rich amber color",
|
||||
},
|
||||
{
|
||||
@@ -146,7 +146,7 @@ export default function ProductsPage() {
|
||||
price: "$45.99",
|
||||
rating: 5,
|
||||
reviewCount: "412",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/decorative-wedding-template-art-deco-design_23-2147958614.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/decorative-wedding-template-art-deco-design_23-2147958614.jpg?_wi=2",
|
||||
imageAlt: "Manuka honey with therapeutic properties",
|
||||
},
|
||||
{
|
||||
@@ -156,7 +156,7 @@ export default function ProductsPage() {
|
||||
price: "$34.99",
|
||||
rating: 5,
|
||||
reviewCount: "189",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/glass-jar-full-honey-with-honey-spoon_23-2148173079.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/glass-jar-full-honey-with-honey-spoon_23-2148173079.jpg?_wi=3",
|
||||
imageAlt: "Organic acacia honey reserve edition",
|
||||
},
|
||||
{
|
||||
@@ -166,7 +166,7 @@ export default function ProductsPage() {
|
||||
price: "$27.99",
|
||||
rating: 5,
|
||||
reviewCount: "256",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/jar-sweet-honey-flowers-desk_23-2147938089.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/jar-sweet-honey-flowers-desk_23-2147938089.jpg?_wi=3",
|
||||
imageAlt: "Spring wildflower honey seasonal blend",
|
||||
},
|
||||
]}
|
||||
@@ -212,7 +212,7 @@ export default function ProductsPage() {
|
||||
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=2"
|
||||
imageAlt="Premium honey collection in sunlight"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
Reference in New Issue
Block a user