BROUWERSHAVEN
ZEN KITCHEN & BOUTIQUE HOTEL
Enjoy a cozy stay near the harbour, dine in for delicious dishes, or grab the area's only Asian take-out!
KITCHEN
Our kitchen offers a range of delicious dishes — from tasty Dutch classics to flavorful Asian dishes. Drop by for lunch, dinner, or just relax in our stylish restaurant and patio with a drink or cocktail.
HOTEL
Stay the night in one of our six cozy boutique hotel rooms. Perfect for couples looking to relax in comfort and style. Each room is thoughtfully designed to make you feel right at home. Book here or on our hotel website and get 10% off!
CONTACT
Want to book a room, reserve a table or order take-out? Just give us a call — we’ll be happy to help! Feel free to reach out if you have any questions!
You can reach us during opening hours.
| Day | Restaurant | Take-out |
|---|
| Monday | 11:00 - 21:00 | 12:00 - 20:00 |
| Tuesday | 11:00 - 21:00 | 12:00 - 20:00 |
| Wednesday | Closed | Closed |
| Thursday | Closed | Closed |
| Friday | 11:00 - 21:00 | 12:00 - 20:00 |
| Saturday | 11:00 - 21:00 | 12:00 - 20:00 |
| Sunday | 11:00 - 21:00 | 12:00 - 20:00 |
/** * Carrd Lightbox: blokkeer SLUITEN alleen bij klik op de afbeelding. * - Klik op afbeelding: NIET sluiten * - Klik naast afbeelding / overlay: WEL sluiten * - Klik op X: WEL sluiten */ (function () { // Handige helper om te checken of de lightbox open is function getOpenLightboxRoot() { // Dek meerdere Carrd/thema varianten af return document.querySelector( [ '.lightbox.is-active', '.modal.is-active', '.gallery.lightbox-active', '.gallery.is-active', '.gallery .modal.is-active', '[role="dialog"].is-active' ].join(', ') ); } // Bepaal of de klik binnen een afbeelding in de open lightbox was function clickedImageInsideLightbox(target) { const lb = getOpenLightboxRoot(); if (!lb) return false; // Mogelijke selectors voor de getoonde afbeelding in Carrd lightbox const imageEl = target.closest( [ '.lightbox img', '.modal img', '.gallery.lightbox-active img', '.gallery.is-active img', '.modal .inner img', '.viewer img', 'img[data-role="lightbox-image"]' ].join(', ') ); // Zorg dat we niet de close-knop voor "img" aanzien (soms is X een svg/img) if (!imageEl) return false; const isCloseBtn = imageEl.closest( '.close, .modal-close, [aria-label="Close"], button[aria-label="Close"]' ); return !isCloseBtn; } // Laat X altijd werken (niet blokkeren) function isCloseButton(target) { return !!target.closest('.close, .modal-close, [aria-label="Close"], button[aria-label="Close"]'); } // Gebruik capture=true zodat we vóór Carrd’s eigen handler zitten ['click', 'touchstart'].forEach(function (evtName) { document.addEventListener( evtName, function (e) { // Als X is geklikt: niets blokkeren if (isCloseButton(e.target)) return; // Alleen blokkeren als er op de afbeelding zelf is geklikt if (clickedImageInsideLightbox(e.target)) { e.preventDefault(); e.stopPropagation(); if (typeof e.stopImmediatePropagation === 'function') e.stopImmediatePropagation(); } }, true ); }); })();