Update src/app/products/page.tsx

This commit is contained in:
2026-03-05 13:44:00 +00:00
parent 3824b69ee2
commit 5ea3b705cc

View File

@@ -43,58 +43,22 @@ export default function ProductsPage() {
<ProductCardFour
products={[
{
id: "1",
name: "Premium Wireless Headphones",
price: "$149.99",
variant: "Black • 2 Colors",
imageSrc: "http://img.b2bpic.net/free-photo/headset-table_417767-238.jpg?_wi=2",
imageAlt: "Wireless headphones",
isFavorited: false,
id: "1", name: "Premium Wireless Headphones", price: "$149.99", variant: "Black • 2 Colors", imageSrc: "http://img.b2bpic.net/free-photo/headset-table_417767-238.jpg", imageAlt: "Wireless headphones", isFavorited: false,
},
{
id: "2",
name: "Smart Watch Pro",
price: "$299.99",
variant: "Silver • 3 Colors",
imageSrc: "http://img.b2bpic.net/free-photo/sporty-active-woman-casual-t-shirt-looks-smartwatch-focused-screen-smiles-gladfully-satisfied-after-wokout-listens-music-wireless-headphones-poses-outdoors-against-urban-surroundings_273609-57760.jpg?_wi=2",
imageAlt: "Smart watch",
isFavorited: false,
id: "2", name: "Smart Watch Pro", price: "$299.99", variant: "Silver • 3 Colors", imageSrc: "http://img.b2bpic.net/free-photo/sporty-active-woman-casual-t-shirt-looks-smartwatch-focused-screen-smiles-gladfully-satisfied-after-wokout-listens-music-wireless-headphones-poses-outdoors-against-urban-surroundings_273609-57760.jpg", imageAlt: "Smart watch", isFavorited: false,
},
{
id: "3",
name: "Portable Charger 20K",
price: "$59.99",
variant: "White • 4 Colors",
imageSrc: "http://img.b2bpic.net/free-photo/powerful-external-battery-with-usb-wire_93675-128475.jpg?_wi=2",
imageAlt: "Portable charger",
isFavorited: false,
id: "3", name: "Portable Charger 20K", price: "$59.99", variant: "White • 4 Colors", imageSrc: "http://img.b2bpic.net/free-photo/powerful-external-battery-with-usb-wire_93675-128475.jpg", imageAlt: "Portable charger", isFavorited: false,
},
{
id: "4",
name: "USB-C Hub Adapter",
price: "$79.99",
variant: "Gray • 2 Colors",
imageSrc: "http://img.b2bpic.net/free-photo/kitchen-faucet-water-aerator-metal-texture_169016-69557.jpg?_wi=2",
imageAlt: "USB hub",
isFavorited: false,
id: "4", name: "USB-C Hub Adapter", price: "$79.99", variant: "Gray • 2 Colors", imageSrc: "http://img.b2bpic.net/free-photo/kitchen-faucet-water-aerator-metal-texture_169016-69557.jpg", imageAlt: "USB hub", isFavorited: false,
},
{
id: "5",
name: "Noise Cancelling Earbuds",
price: "$129.99",
variant: "White • 3 Colors",
imageSrc: "http://img.b2bpic.net/free-photo/headset-table_417767-238.jpg?_wi=3",
imageAlt: "Noise cancelling earbuds",
isFavorited: false,
id: "5", name: "Noise Cancelling Earbuds", price: "$129.99", variant: "White • 3 Colors", imageSrc: "http://img.b2bpic.net/free-photo/headset-table_417767-238.jpg", imageAlt: "Noise cancelling earbuds", isFavorited: false,
},
{
id: "6",
name: "Wireless Charging Pad",
price: "$49.99",
variant: "Black • 2 Colors",
imageSrc: "http://img.b2bpic.net/free-photo/powerful-external-battery-with-usb-wire_93675-128475.jpg?_wi=3",
imageAlt: "Wireless charging pad",
isFavorited: false,
id: "6", name: "Wireless Charging Pad", price: "$49.99", variant: "Black • 2 Colors", imageSrc: "http://img.b2bpic.net/free-photo/powerful-external-battery-with-usb-wire_93675-128475.jpg", imageAlt: "Wireless charging pad", isFavorited: false,
},
]}
title="All Products"
@@ -124,25 +88,16 @@ export default function ProductsPage() {
buttonAnimation="slide-up"
accordionItems={[
{
id: "1",
title: "Premium Quality",
content:
"All our products are carefully selected and tested for quality. We partner with leading manufacturers to ensure you receive the best items in the market.",
},
id: "1", title: "Premium Quality", content:
"All our products are carefully selected and tested for quality. We partner with leading manufacturers to ensure you receive the best items in the market."},
{
id: "2",
title: "Competitive Pricing",
content:
"We offer the most competitive prices without compromising on quality. Our efficient supply chain allows us to pass savings directly to you.",
},
id: "2", title: "Competitive Pricing", content:
"We offer the most competitive prices without compromising on quality. Our efficient supply chain allows us to pass savings directly to you."},
{
id: "3",
title: "Fast Shipping",
content:
"Get your orders delivered quickly and safely. We ship worldwide with multiple carrier options and real-time tracking.",
},
id: "3", title: "Fast Shipping", content:
"Get your orders delivered quickly and safely. We ship worldwide with multiple carrier options and real-time tracking."},
]}
imageSrc="http://img.b2bpic.net/free-photo/young-latin-man-entrepreneur-with-lot-orders-his-online-shop-business-owner-writing-customers-information-clipboard_662251-2175.jpg?_wi=2"
imageSrc="http://img.b2bpic.net/free-photo/young-latin-man-entrepreneur-with-lot-orders-his-online-shop-business-owner-writing-customers-information-clipboard_662251-2175.jpg"
imageAlt="Product benefits"
mediaAnimation="slide-up"
useInvertedBackground={false}
@@ -171,8 +126,8 @@ export default function ProductsPage() {
columns={[
{
items: [
{ label: "Features", id: "features" },
{ label: "Pricing", id: "pricing" },
{ label: "Features", href: "#features" },
{ label: "Pricing", href: "#pricing" },
{ label: "Dashboard", href: "/dashboard" },
],
},