BROUWERSHAVEN
ZEN KITCHEN & BOUTIQUE HOTEL
Vier de feestdagen bij ZEN! 🎄
Voor 24, 25 en 26 december hebben we een speciaal kerstmenu samengesteld waarvan we zeker weten dat jullie ervan zullen genieten. Liever à la carte? Dat kan natuurlijk ook, net zo gezellig! Vergeet alleen niet op tijd te reserveren.
- 31 december en 1 januari zijn wij ook geopend -
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.
CONTACT
Want to reserve a table or order take-out? Just give us a call — we’ll be happy to help! Looking to book one of our boutique rooms? You can do that easily through Interhome, Booking.com, or your favorite booking platform. 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 |
The kitchen is open between 12:00 and 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 ); }); })();