workshopclaudecode/src/config/workshop.js
Frank Meeuwsen 212005e725 chore: update beschikbare plekken naar 4
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-16 07:40:17 +01:00

13 lines
374 B
JavaScript

/**
* 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,
availableSpots: 4,
isSoldOut: false,
};