/* global React */ /* BOHAM Praia — Part B: About / manifesto, Eat & Drink, Music */ (function () { const { Card, Tag, Button, Avatar } = window.BOHAMDesignSystem_8e9a1f; const L = window.L; // ---- About / manifesto (rose) ------------------------------------------- function About() { const lang = window.useBohamLang(); return (
{L(lang, 'Welcome to BOHAM', 'Bem-vindo ao BOHAM', 'Bienvenue au BOHAM')}

{L(lang, 'Good people. Good music. Good days. The social beach club where travelers, locals and kiters meet around food, sunsets and the ', 'Gente boa. Música boa. Dias bons. O beach club social onde viajantes, locais e velejadores se encontram em torno da comida, do pôr do sol e do ', 'Du vent, du soleil, et tout ce qui va avec. Le Beach Club où voyageurs, locaux et kiteurs se retrouvent autour d’une bonne table, d’un verre au soleil et des plus beaux moments de la ')} {L(lang, 'sound of the afternoon', 'som da tarde', 'journée')}.

The BOHAM beach club from above, bamboo roof, terracotta terraces, umbrellas on the sand
); } // ---- The day: Eat · Drink · Dance (merged, visual-led) ------------------- function DayLife() { const lang = window.useBohamLang(); const tiles = [ { img: 'boham-site/photos/real-dj.jpg', label: L(lang, 'Sunset vibes', 'Sunset vibes', 'Sunset vibes'), ar: '3 / 4' }, { img: 'boham-site/photos/real-drink-cucumber.jpg', label: L(lang, 'Fresh drinks', 'Caipirinhas', 'Cocktails frais'), ar: '3 / 4', pos: 'center 45%' }, { img: 'boham-site/photos/real-band.jpg', label: L(lang, 'Live music', 'Música ao vivo', 'Musique live'), ar: '3 / 4', pos: 'center 35%' }, { img: 'boham-site/photos/real-group.jpg', label: L(lang, 'Good people, always', 'Gente boa, sempre', 'Toujours du beau monde'), ar: '3 / 4', pos: 'center 35%' }, { img: 'boham-site/photos/real-food.jpg', label: L(lang, 'Catch of the day', 'Peixe fresco do dia', 'Pêche du jour'), ar: '3 / 4', pos: 'center 50%' }, { img: 'boham-site/photos/real-pool.jpg', label: L(lang, 'Pool & long afternoons', 'Piscina & tardes longas', 'Piscine & longs après-midi'), ar: '3 / 4', pos: 'center 40%' }, ]; return (
{L(lang, 'Eat · Drink · Dance', 'Comer · Beber · Dançar', 'Manger · Boire · Danser')}

{L(lang, 'Good drinks. Good food. Good wind. Long afternoons.', 'Boa bebida. Boa comida. Bom vento. Tardes longas.', 'À table. Au bar. Au bord de l’eau.')}

{L(lang, 'Lunch that drifts into sunset. Caipirinhas and gengibradas, fresh fish, and a DJ when the light turns gold. The day has a rhythm, just follow it.', 'Almoço que vira pôr do sol. Caipirinhas e gengibradas, peixe fresco e DJ set ou música ao vivo quando a luz fica dourada. O dia tem um ritmo, é só seguir.', 'Des déjeuners qui s’éternisent, des caïpirinhas savoureuses, du poisson frais et un DJ ou une roda de samba qui prend le relais à l’heure du sunset. Ici, personne ne regarde sa montre.')}

{tiles.map((t, n) => (
{t.label}
{t.label}
))}
); } window.BohamAbout = About; window.BohamDayLife = DayLife; })();