// Scroll storytelling + Felsefe (philosophy) sections const { useEffect: useEffectS, useRef: useRefS, useState: useStateS } = React; function StorytellingSection() { const phrases = [ { t: "Profesyonel Dokunuş", s: "Her detay, on iki yıllık tecrübenin sessiz dilinde." }, { t: "Doğal Güzelliği Ortaya Çıkar", s: "Maskelemek değil — ışığı geri kazandırmak." }, { t: "Kendinizin En Işıltılı Hali", s: "Cilt, ifade ve duruşun yeniden kavuştuğu yer." }, { t: "Zarafetinizi Ön Plana Çıkarın", s: "Modern bir atelye, klasik bir özen." }, ]; const stickyRef = useRefS(null); const [idx, setIdx] = useStateS(0); useEffectS(() => { const onScroll = () => { if (!stickyRef.current) return; const r = stickyRef.current.getBoundingClientRect(); const total = stickyRef.current.offsetHeight - window.innerHeight; const passed = Math.min(Math.max(-r.top, 0), total); const p = total > 0 ? passed / total : 0; const i = Math.min(phrases.length - 1, Math.floor(p * phrases.length * 0.999)); setIdx(i); }; window.addEventListener('scroll', onScroll, { passive: true }); onScroll(); return () => window.removeEventListener('scroll', onScroll); }, []); return (
Bölüm 0{idx+1} / 04
{phrases.map((p, i) => (

{p.t}

{p.s}

))}
{phrases.map((_, i) => )}
); } function FelsefeSection() { return (
"Sakin bir özen, en güçlü estetiktir."
— Felsefemiz

Hızlı değil, doğru.
Çok değil, incelikle.

Sevgi Taşan Beauty Studio, 2014'te Yıldırım'da bir kişisel atelye olarak doğdu. Bugün hâlâ aynı düşüncede: cildi yormayan, ifadeyi bozmayan, kişiye özel bir bakım — uzman elinde, sessiz bir mekânda.

Hijyen Standartları

Tek kullanımlık ekipman, klinik düzeyde sterilizasyon, şeffaf süreç.

Sertifikalı Uzmanlar

Uluslararası eğitim almış, sürekli güncellenen kadro.

Kişiye Özel Yaklaşım

Her cilt farklıdır — protokol değil, kişisel bir okuma yaparız.

Premium Ürünler

Yalnızca dermatolojik onaylı, klinik testli profesyonel markalar.

); } window.StorytellingSection = StorytellingSection; window.FelsefeSection = FelsefeSection;