// Hero with rotating slides + nav + booking strip const { useState, useEffect, useRef } = React; function Nav({ section, openBooking, navOverHero, scrolled }) { const items = ["Stays", "Dine", "Events", "Gallery", "Area", "Contact"]; return ( ); } function Hero({ openBooking }) { const [idx, setIdx] = useState(0); const slides = window.SK_DATA.hero; useEffect(() => { const t = setInterval(() => setIdx(i => (i + 1) % slides.length), 6000); return () => clearInterval(t); }, []); return (
{slides.map((s, i) => (
))}

Where nine
islets meet
the pine line.

Coordinates 40.182°N · 23.794°E
Vourvourou bay, Sithonia
{slides[idx].caption} · {slides[idx].label}
Season Open April – October
36 apartments · 3 buildings
{slides.map((_, i) => (
setIdx(i)} /> ))}
); } function Intro() { return (
01 — A small family resort

Three buildings, thirty-six apartments, one pool, a pine grove that runs to the water. Built and run by a single family since the seventies — quietly upgraded every winter.

Simon King sits on the western edge of the Vourvourou bay, the only spot in the Aegean where nine separate islets form a sheltered turquoise sea. Karydi beach is a fifteen-minute walk; Diaporos is a ten-minute boat. The pine line keeps the afternoons cool.

Choose between the original stone Apartments, the family-quiet Privé, or the new stone-and-timber Junior Suites. Then leave the keys at reception and forget about them.

36
Apartments
9
Islets in view
52
Years family-run
pool
Vourvourou · 40.18°N
); } Object.assign(window, { Nav, Hero, Intro });