// Buildings list, amenities grid, events strip function Buildings({ openBooking }) { const items = window.SK_DATA.buildings; return (
02 — Stays

Three
buildings,
one bay.

Each building has its own character. The old stone Apartments are slow and shaded; the Privé is for families who want quiet; the New is bright modern Junior Suites with sea views. Pick by mood — the pool, the breakfast room and the bar are shared.

{items.map((b, i) => (
0{i + 1}
{b.name}
{b.name} {b.kicker}
{b.keys.map(k => {k})}
{b.blurb}
))}
); } function Amenities() { return (
03 — Amenities

The slow
essentials.

What we have and what we don't. No spa, no kids' club, no overpriced loungers on a private beach. The things below, instead — quietly maintained, included with the stay.

{window.SK_DATA.amenities.map((a, i) => (
{String(i+1).padStart(2,"0")} / {a.cap}
{a.t}
{a.d}
))}
); } function Events() { const evs = [ { time: "07:00", ev: "Sunrise yoga on the deck", sub: "The Harpy Yoga. Free for guests, mat provided. Open to walk-ins.", day: "Daily" }, { time: "08:00 – 11:00", ev: "Breakfast in the new restaurant", sub: "Full Greek buffet — bread baked at six, eggs to order, yoghurt with thyme honey.", day: "Daily" }, { time: "10:30", ev: "Boat around the nine islets", sub: "Captain Stelios takes guests around the bay. Two cove stops, snorkels onboard.", day: "Thu / Sat" }, { time: "13:00", ev: "Pool bar opens", sub: "Snacks, drinks, espresso from a machine that knows what it's doing.", day: "Daily" }, { time: "18:30", ev: "Sunset aperitivo", sub: "House negroni, olives from Olympias, the bay turning gold.", day: "Daily" }, { time: "20:30", ev: "Greek folk night", sub: "Live laïkó from the bouzouki trio. Order any meal — the wine is on the house.", day: "Tue" }, { time: "22:00", ev: "Karaoke at the pool bar", sub: "Microphone passed around until the last brave guest. No judgement, no curfew.", day: "Fri" } ]; return (
04 — A day at the resort

A day,
in rhythm.

{evs.map((e, i) => (
{e.time}
{e.ev}{e.sub}
{e.day}
))}
); } Object.assign(window, { Buildings, Amenities, Events });