80 lines
2.8 KiB
TypeScript
80 lines
2.8 KiB
TypeScript
import { ImagePlus } from "lucide-react";
|
|
import React from "react";
|
|
|
|
export const dummyProducts = [
|
|
{
|
|
id: '1',
|
|
brand: 'TechGadget',
|
|
name: 'Smartphone Screen Repair Kit',
|
|
price: '$49.99',
|
|
rating: 4.5,
|
|
reviewCount: '120 reviews',
|
|
imageSrc: 'http://img.b2bpic.net/free-photo/flat-lay-broken-screen-smartphone-accessories_23-2148401306.jpg?_wi=1',
|
|
imageAlt: 'Smartphone screen repair kit',
|
|
description: 'DIY kit for repairing common smartphone screen cracks. Includes tools and replacement glass for most popular models.',
|
|
},
|
|
{
|
|
id: '2',
|
|
brand: 'LaptopCare',
|
|
name: 'High-Performance Laptop Battery',
|
|
price: '$89.99',
|
|
rating: 4.8,
|
|
reviewCount: '85 reviews',
|
|
imageSrc: 'http://img.b2bpic.net/free-photo/broken-laptop-repair-tools-table_343059-548.jpg',
|
|
imageAlt: 'High-performance laptop battery',
|
|
description: 'Long-lasting replacement battery for various laptop brands. Enjoy extended usage and reliable power.',
|
|
},
|
|
{
|
|
id: '3',
|
|
brand: 'TabletFix',
|
|
name: 'Universal Tablet Charging Port',
|
|
price: '$29.99',
|
|
rating: 4.2,
|
|
reviewCount: '50 reviews',
|
|
imageSrc: 'http://img.b2bpic.net/free-photo/computer-repair-engineer-working-pc_177995-1565.jpg?_wi=1',
|
|
imageAlt: 'Universal tablet charging port',
|
|
description: 'Replace your faulty charging port with this universal solution. Compatible with most tablet models.',
|
|
},
|
|
{
|
|
id: '4',
|
|
brand: 'GamerGear',
|
|
name: 'Gaming Console HDMI Port',
|
|
price: '$59.99',
|
|
rating: 4.6,
|
|
reviewCount: '95 reviews',
|
|
imageSrc: 'http://img.b2bpic.net/free-photo/gamepad-gaming-headset-blue-background_23-2148281358.jpg',
|
|
imageAlt: 'Gaming console HDMI port',
|
|
description: 'High-quality HDMI port replacement for popular gaming consoles. Restore your crisp visuals and audio.',
|
|
},
|
|
{
|
|
id: '5',
|
|
brand: 'DataSecure',
|
|
name: 'External SSD Data Recovery Service',
|
|
price: '$199.99',
|
|
rating: 4.9,
|
|
reviewCount: '70 reviews',
|
|
imageSrc: 'http://img.b2bpic.net/free-photo/hard-disk-drive-inside_1252-817.jpg',
|
|
imageAlt: 'External SSD for data recovery',
|
|
description: 'Professional data recovery for external SSDs. We can retrieve lost or corrupted files from damaged drives.',
|
|
},
|
|
];
|
|
|
|
export const dummyCartItems = [
|
|
{
|
|
id: '1',
|
|
name: 'Smartphone Screen Repair Kit',
|
|
price: '$49.99',
|
|
quantity: 1,
|
|
imageSrc: 'http://img.b2bpic.net/free-photo/flat-lay-broken-screen-smartphone-accessories_23-2148401306.jpg?_wi=2',
|
|
imageAlt: 'Smartphone screen repair kit',
|
|
},
|
|
{
|
|
id: '3',
|
|
name: 'Universal Tablet Charging Port',
|
|
price: '$29.99',
|
|
quantity: 2,
|
|
imageSrc: 'http://img.b2bpic.net/free-photo/computer-repair-engineer-working-pc_177995-1565.jpg?_wi=2',
|
|
imageAlt: 'Universal tablet charging port',
|
|
},
|
|
];
|