2026-02-23 21:34:24 +00:00
|
|
|
/**
|
|
|
|
|
* workshop.js - Workshop details configuratie
|
|
|
|
|
*
|
|
|
|
|
* Centrale plek voor beschikbaarheid en andere workshopdetails.
|
|
|
|
|
* Pas availableSpots hier aan als er een plek verkocht is.
|
|
|
|
|
* Zet isSoldOut op true als alle plekken weg zijn - activeert wachtlijstmodus op de hele site.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
export const WORKSHOP_CONFIG = {
|
|
|
|
|
totalSpots: 8,
|
2026-03-03 09:14:26 +00:00
|
|
|
availableSpots: 1,
|
2026-02-23 21:34:24 +00:00
|
|
|
isSoldOut: false,
|
|
|
|
|
};
|