Skip to content

Commit

Permalink
Updated images
Browse files Browse the repository at this point in the history
  • Loading branch information
johnwroge committed Nov 25, 2024
1 parent 80b24de commit 7367ef7
Showing 1 changed file with 88 additions and 58 deletions.
146 changes: 88 additions & 58 deletions src/data/products.ts
Original file line number Diff line number Diff line change
@@ -1,110 +1,140 @@
import { Product } from '../types';
import whiteshirt from '../assets/white_shirt.png';
import stripedSweater from '../assets/striped_sweater.png';
import cashmereCap from '../assets/cashmere_winter_cap.png';
import lightChinos from '../assets/light_men_chino.png';
import yellowBeanie from '../assets/yellow_beanie.png';
import suitcase from '../assets/repurposed_suitcase.png';
import forestShirt from '../assets/forest_shirt.png';
import watch from '../assets/watch.png';
import christmasSweater from '../assets/christmas_sweater.png';
import womensPants from '../assets/light_pant_women.png';
import darkPants from '../assets/dark_pant_mens.png';
import whiteCoat from '../assets/white_matte_winter_coat.png';
import greenShirt from '../assets/green_shirt 2.png';
import mensFleece from '../assets/mens_fleece.png';
import toteBag from '../assets/white_tote_bag.png';
import darkCoat from '../assets/coat_dark.png';
import repurposedShirt from '../assets/white_shirt_repurposed.png';

export const products: Product[] = [
export const products = [
{
id: 0,
title: 'Classic Faux - Leather Belt',
description: 'Faux leather belt with classic buckle',
price: 39.99,
image: '/api/placeholder/400/400',
title: 'White Dress Shirt',
description: 'Classic white cotton dress shirt',
price: 49.99,
image: whiteshirt,
},
{
id: 1,
title: 'Blue Striped Sweater',
description: 'Soft blue stripe sweater.',
title: 'Striped Sweater',
description: 'Cozy striped knit sweater',
price: 64.99,
image: '/api/placeholder/400/400',
image: stripedSweater,
},
{
id: 2,
title: 'Classic Cap',
description: 'Breathable winter cap.',
price: 19.99,
image: '/api/placeholder/400/400',
title: 'Cashmere Winter Cap',
description: 'Luxurious cashmere winter cap',
price: 39.99,
image: cashmereCap,
},
{
id: 3,
title: 'Khaki Chino Pants',
description: 'Classic khaki pants',
title: 'Light Men\'s Chinos',
description: 'Classic light-colored chino pants for men',
price: 59.99,
image: '/api/placeholder/400/400',
image: lightChinos,
},
{
id: 4,
title: 'Brushed Cashmere Beanie',
description: 'Soft beanie for a cozy winter',
price: 79.99,
image: '/api/placeholder/400/400',
title: 'Yellow Beanie',
description: 'Warm yellow knit beanie',
price: 29.99,
image: yellowBeanie,
},
{
id: 5,
title: 'Double-Layer Leather Belt',
description: 'Sturdy, double-layered belt crafted from repurposed leather',
price: 49.99,
image: '/api/placeholder/400/400',
title: 'Repurposed Suitcase',
description: 'Sustainably repurposed vintage suitcase',
price: 149.99,
image: suitcase,
},
{
id: 6,
title: "Women's Striped Shirt",
description: 'Orange - blue striped shirt',
title: 'Forest Green Shirt',
description: 'Casual forest green button-up shirt',
price: 45.99,
image: '/api/placeholder/400/400',
image: forestShirt,
},
{
id: 7,
title: 'Wrist Watch',
description: 'Faux-leather pine green watch',
price: 149.99,
image: '/api/placeholder/400/400',
title: 'Classic Watch',
description: 'Timeless analog watch design',
price: 129.99,
image: watch,
},
{
id: 8,
title: 'Striped Scarf',
description: 'Navy - emerald duo striped scarf ',
price: 29.99,
image: '/api/placeholder/400/400',
title: 'Christmas Sweater',
description: 'Festive holiday knit sweater',
price: 69.99,
image: christmasSweater,
},
{
id: 9,
title: 'Kaleidoscope Dress',
description: 'Kaleidoscope cotton dress',
price: 99.99,
image: '/api/placeholder/400/400',
title: 'Women\'s Light Pants',
description: 'Comfortable light-colored pants for women',
price: 54.99,
image: womensPants,
},
{
id: 10,
title: 'Matte Black Belt',
description: 'Black belt with matte finish',
price: 42.99,
image: '/api/placeholder/400/400',
title: 'Dark Men\'s Pants',
description: 'Classic dark pants for men',
price: 59.99,
image: darkPants,
},
{
id: 11,
title: 'Sustainable Winter Coat',
description: 'Dual material - double faced lux coat',
title: 'White Winter Coat',
description: 'Elegant white matte finish winter coat',
price: 199.99,
image: '/api/placeholder/400/400',
image: whiteCoat,
},
{
id: 12,
title: 'Checker Flannel Shirt',
description: 'Warm checker cotton flannel',
price: 54.99,
image: '/api/placeholder/400/400',
title: 'Green Casual Shirt',
description: 'Versatile green casual shirt',
price: 44.99,
image: greenShirt,
},
{
id: 13,
title: 'English wool faux fur - lined trapper hat',
description: 'Cozy winter hat',
price: 25.99,
image: '/api/placeholder/400/400',
title: 'Men\'s Fleece',
description: 'Warm and comfortable fleece pullover',
price: 79.99,
image: mensFleece,
},
{
id: 14,
title: 'BT Graphic Tote Bag',
description: 'Natural mountain pine cloth bag',
price: 129.99,
image: '/api/placeholder/400/400',
title: 'White Tote Bag',
description: 'Spacious white canvas tote bag',
price: 34.99,
image: toteBag,
},
{
id: 15,
title: 'Dark Winter Coat',
description: 'Premium dark winter coat',
price: 189.99,
image: darkCoat,
},
{
id: 16,
title: 'Repurposed White Shirt',
description: 'Sustainably repurposed white cotton shirt',
price: 59.99,
image: repurposedShirt,
},
] as const;

Expand Down

0 comments on commit 7367ef7

Please sign in to comment.