-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Travis Doughty
committed
Aug 29, 2024
1 parent
1d04be0
commit b3727ad
Showing
4 changed files
with
137 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<script src="js/demos/load-more.js" type="module"></script> | ||
<script src="js/demos/load-more/load-more.js" type="module"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
export const resetProductsData = [ | ||
{ | ||
id: 'product-1', | ||
name: 'Modern Tufted Armless Lounge Chair', | ||
image: 'images/load-more/chair1.png', | ||
price: '$399.99', | ||
category: 'Modern Chairs', | ||
}, | ||
{ | ||
id: 'product-2', | ||
name: 'Minimalist Felt Lounge Chair', | ||
image: 'images/load-more/chair2.png', | ||
price: '$199.99', | ||
category: 'Simple Chairs', | ||
}, | ||
{ | ||
id: 'product-3', | ||
name: 'Classic Tufted Leather Wingback Chair', | ||
image: 'images/load-more/chair3.png', | ||
price: '$799.99', | ||
category: 'Leather Chairs', | ||
}, | ||
]; | ||
|
||
export const productsData = [ | ||
{ | ||
id: 'product-4', | ||
name: 'Wire Frame Accent Chair', | ||
image: 'images/load-more/chair4.png', | ||
price: '$99.99', | ||
category: 'Metal Chairs', | ||
}, | ||
{ | ||
id: 'product-5', | ||
name: 'Modern Wooden End Table', | ||
image: 'images/load-more/chair5.png', | ||
price: '$149.99', | ||
category: 'End Tables', | ||
}, | ||
{ | ||
id: 'product-6', | ||
name: 'Ergonomic Leather Office Chair', | ||
image: 'images/load-more/chair6.png', | ||
price: '$299.99', | ||
category: 'Office Chairs', | ||
}, | ||
{ | ||
id: 'product-7', | ||
name: 'Modern Wood Slat Back Dining Chair', | ||
image: 'images/load-more/chair7.png', | ||
price: '$99.99', | ||
category: 'Wooden Chairs', | ||
}, | ||
{ | ||
id: 'product-8', | ||
name: 'Wooden Picnic Table with Benches', | ||
image: 'images/load-more/chair8.png', | ||
price: '$999.99', | ||
category: 'Outdoor Chairs', | ||
}, | ||
{ | ||
id: 'product-9', | ||
name: 'Classic Windsor Chair', | ||
image: 'images/load-more/chair9.png', | ||
price: '$149.99', | ||
category: 'Kitchen Chairs', | ||
}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters