This commit is contained in:
cowboykipnugget
2025-02-13 12:06:03 +01:00
7 changed files with 7 additions and 5 deletions

BIN
website/media/aardappel.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 328 KiB

BIN
website/media/choco-gs.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 645 KiB

BIN
website/media/griekse.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 429 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 309 KiB

BIN
website/media/softijs.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 209 KiB

BIN
website/media/sundea.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 105 KiB

View File

@@ -28,7 +28,7 @@ function showCategory(category) {
{ title: "Fanta cassis", imageSrc: "media/fanta-cassis.jpg", price: 1.80 }, ]
} else if (category === 'Warme-Dranken') {
items = [
{ title: "Chocomel", imageSrc: "media/chocomel.jpg", price: 1.00 },
{ title: "Chocomel", imageSrc: "media/choco-gs.jpg", price: 1.00 },
{ title: "Chocomel met slagroom", imageSrc: "media/chocomel.jpg", price: 1.25 },
{ title: "Koffie", imageSrc: "media/koffie.jpg", price: 1.50 },
{ title: "Thee", imageSrc: "media/thee.jpg", price: 1.50 },
@@ -45,8 +45,10 @@ function showCategory(category) {
];
} else if (category === 'deserts') {
items = [
{ title: "Ijsjes", imageSrc: "media/Ijs.png", price: 2.00 },
{ title: "Ijsjes", imageSrc: "media/Ijs.png", price: 1.50 },
{ title: "Sorbet", imageSrc: "media/sorbet.webp", price: 2.50 },
{ title: "Softijs", imageSrc: "https://www.yourlittleblackbook.me/wp-content/uploads/2023/07/lekkerste-softijs-amsterdam.jpg", price: 2.50 },
{ title: "Sundea ijs", imageSrc: "https://easyfoodheesch.nl/wp-content/uploads/2021/02/IMG_7402.jpg", price: 2.50 },
];
} else if (category === 'Deals') {
items = [
@@ -63,9 +65,9 @@ function showCategory(category) {
} else if (category === 'Salades') {
items = [
{ title: "Caesar Salade", imageSrc: "media/salade.jpg", price: 2.50 },
{ title: "Griekse Salade", imageSrc: "https://ketokriebels.be/wp-content/uploads/2020/05/greek-salad-freepik-scaled.jpg", price: 3.50 },
{ title: "Krokante Kip Salade", imageSrc: "https://www.dekokendezussen.nl/wp-content/uploads/2021/07/IMG_3851.jpg", price: 3.00 },
{ title: "Aardappel Salade", imageSrc: "https://www.leukerecepten.nl/app/uploads/2022/07/aardappelsalade_2.jpg", price: 2.50 },
{ title: "Griekse Salade", imageSrc: "media/griekse.jpg", price: 3.50 },
{ title: "Krokante Kip Salade", imageSrc: "media/krokante-kip.jpg", price: 3.00 },
{ title: "Aardappel Salade", imageSrc: "media/aardappel.jpg", price: 2.50 },
];
}