diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx index 4112fe5..10435b7 100644 --- a/src/app/products/page.tsx +++ b/src/app/products/page.tsx @@ -44,10 +44,10 @@ export default function ProductsPage() { title="Our Products" description="Discover our exclusive selection of gourmet items." products={[ - { id: "prod1", name: "Artisanal Coffee Blend", price: "₹499", imageSrc: "http://img.b2bpic.net/free-photo/coffee-beans-table_144627-14275.jpg" }, - { id: "prod2", name: "Bohemian Spices Box", price: "₹299", imageSrc: "http://img.b2bpic.net/free-photo/spices-different-bowls_114579-2826.jpg" }, - { id: "prod3", name: "Signature Tea Leaves", price: "₹399", imageSrc: "http://img.b2bpic.net/free-photo/tea-leaves-wooden-surface_1150-13788.jpg" }, - { id: "prod4", name: "Orya Home Decor", price: "₹899", imageSrc: "http://img.b2bpic.net/free-photo/interior-design-elements_141793-13004.jpg" } + { id: "prod1", name: "Artisanal Coffee Blend", price: "₹499", variant: "Signature", imageSrc: "http://img.b2bpic.net/free-photo/coffee-beans-table_144627-14275.jpg" }, + { id: "prod2", name: "Bohemian Spices Box", price: "₹299", variant: "Organic", imageSrc: "http://img.b2bpic.net/free-photo/spices-different-bowls_114579-2826.jpg" }, + { id: "prod3", name: "Signature Tea Leaves", price: "₹399", variant: "Premium", imageSrc: "http://img.b2bpic.net/free-photo/tea-leaves-wooden-surface_1150-13788.jpg" }, + { id: "prod4", name: "Orya Home Decor", price: "₹899", variant: "Handcrafted", imageSrc: "http://img.b2bpic.net/free-photo/interior-design-elements_141793-13004.jpg" } ]} />