Add files via upload

This commit is contained in:
James 2025-10-01 19:55:37 -07:00 committed by GitHub
parent 2858c6c261
commit 980e9d2322
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 7 deletions

View File

@ -348,9 +348,10 @@
<select id="category">
<option value="all">All categories</option>
<option value="merch">Merch</option>
<option value="Servers">Servers</option>
<option value="server">Servers</option>
<option value="perks">Server Perks</option>
</select>
<select id="sort">
<option value="featured">Sort: Featured</option>
<option value="price-asc">Price: Low → High</option>
@ -384,15 +385,15 @@
<script>
// ======= Demo products (edit to your real products) =======
const products = [
{ id: 'Server', name: 'Server Class 1', price: 25.00, category: 'Server', tag: 'Server monthly', img: 'img/PrivateServerCLASS01.png', payment: 'https://buy.stripe.com/test_123tee' },
{ id: 'Server', name: 'Server Class 2', price: 50.00, category: 'Server', tag: 'Server monthly', img: 'img/PrivateServerCLASS02.png', payment: 'https://buy.stripe.com/test_123mug' },
{ id: 'Server', name: 'Server Class 3', price: 75.00, category: 'Server', tag: 'Server monthly', img: 'img/PrivateServerCLASS03.png', payment: 'https://buy.stripe.com/test_123ost' },
{ id: 'Server', name: 'Server Class 1', price: 25.00, category: 'server', tag: 'Server monthly', img: 'img/PrivateServerCLASS01.png', payment: 'https://buy.stripe.com/test_123tee' },
{ id: 'Server', name: 'Server Class 2', price: 50.00, category: 'server', tag: 'Server monthly', img: 'img/PrivateServerCLASS02.png', payment: 'https://buy.stripe.com/test_123mug' },
{ id: 'Server', name: 'Server Class 3', price: 75.00, category: 'server', tag: 'Server monthly', img: 'img/PrivateServerCLASS03.png', payment: 'https://buy.stripe.com/test_123ost' },
{ id: 'perk1', name: 'ASA Server Slot x30 days', price: 5.00, category: 'perks', tag: 'Server Perk monthly', img: 'img/ServerSlotX30.png', payment: 'https://buy.stripe.com/test_123perk' },
{ id: 'perk1', name: 'Mutated Creatures', price: 1.50, category: 'perks', tag: 'Dino Pack One Time Payment 10 non-breedable', img: 'img/MutatedCretures.png', payment: 'https://buy.stripe.com/test_123perk' },
{ id: 'perk1', name: 'Starter Pack', price: 1.50, category: 'perks', tag: 'Starter Pack One Time Payment', img: 'img/StarterPack.png', payment: 'https://buy.stripe.com/test_123perk' },
{ id: 'Server', name: 'Small Map manipulation', price: 5.00, category: 'Server', tag: 'Small Map manipulation Pack One Time Payment', img: 'img/SmallMap.png', payment: 'https://buy.stripe.com/test_123perk' },
{ id: 'Server', name: 'Medium Map manipulation', price: 10.00, category: 'Server', tag: 'Medium Map manipulation Pack One Time Payment', img: 'img/MediumMap.png', payment: 'https://buy.stripe.com/test_123perk' },
{ id: 'Server', name: 'Large Map manipulation', price: 15.00, category: 'Server', tag: 'Large Map manipulation Pack One Time Payment', img: 'img/LargeMap.png', payment: 'https://buy.stripe.com/test_123perk' },
{ id: 'Server', name: 'Small Map manipulation', price: 5.00, category: 'server', tag: 'Small Map manipulation Pack One Time Payment', img: 'img/SmallMap.png', payment: 'https://buy.stripe.com/test_123perk' },
{ id: 'Server', name: 'Medium Map manipulation', price: 10.00, category: 'server', tag: 'Medium Map manipulation Pack One Time Payment', img: 'img/MediumMap.png', payment: 'https://buy.stripe.com/test_123perk' },
{ id: 'Server', name: 'Large Map manipulation', price: 15.00, category: 'server', tag: 'Large Map manipulation Pack One Time Payment', img: 'img/LargeMap.png', payment: 'https://buy.stripe.com/test_123perk' },
];
// ======= State =======