import { resortData } from "@/src/data/resort"; import { getCloudinaryUrl } from "@/src/lib/cloudinary"; import Image from "next/image"; export default function Spa() { const lang = "tr"; // Mocked locale return (
{/* Immersive Hero Header */}
SPA Center
REJUVENATE

{resortData.nav.spa[lang]}

{/* Intro Section - White Marble Aesthetic */}

{lang === "tr" ? "Saf beyaz mermerin huzuru ve asırlık şifa gelenekleriyle ruhunuzu arındırın." : "Purify your soul with the peace of pure white marble and centuries-old healing traditions."}

{lang === "tr" ? "Salmakis SPA & Wellness, modern terapileri geleneksel Türk hamamı ritüelleriyle birleştirerek size eşsiz bir yenilenme deneyimi sunuyor." : "Salmakis SPA & Wellness offers you a unique rejuvenation experience by combining modern therapies with traditional Turkish bath rituals."}

{/* Masonry-Style Treatments Gallery */}
{resortData.spaTreatments.map((item, idx) => (
{item.name[lang]}
{item.duration}

{item.name[lang]}

{item.description[lang]}

))}
{/* Marble Callout */}
White Marble

Bodrum Tradition

{lang === "tr" ? "“Güneşin sıcaklığı ve suyun huzuru burada birleşiyor.”" : "“Where the warmth of the sun and the peace of the water unite.”"}

); }