test-space / data.js
KingNish's picture
Implement product page, cart, and checkout functionality with icons and animations (#28)
c821e69 verified
raw
history blame contribute delete
510 Bytes
export const products = [
{
id: "1",
name: "Product 1",
description: "This is the first product.",
price: 25.00,
image: "https://placehold.co/200x300"
},
{
id: "2",
name: "Product 2",
description: "This is the second product.",
price: 50.00,
image: "https://placehold.co/200x300"
},
{
id: "3",
name: "Product 3",
description: "This is the third product.",
price: 75.00,
image: "https://placehold.co/200x300"
}
];