// Hero — cinematic fullscreen const { useEffect, useRef, useState } = React; function HeroParallax() { const ref = useRef(null); useEffect(() => { const onScroll = () => { if (!ref.current) return; const y = window.scrollY; const layers = ref.current.querySelectorAll('[data-par]'); layers.forEach(l => { const f = parseFloat(l.dataset.par); l.style.transform = `translate3d(0, ${y * f}px, 0)`; }); }; window.addEventListener('scroll', onScroll, { passive: true }); return () => window.removeEventListener('scroll', onScroll); }, []); return ref; } function Hero({ headline }) { const ref = HeroParallax(); const lines = (headline || "Sevgi Taşan Beauty Studio").split(" "); return (
Est. 2014 — Bursa · Yıldırım
Atelier de Beauté

{lines.map((w, i) => { const it = (i === 1 || /^bir|en|the$/i.test(w)); return ( {w}{i < lines.length-1 ? '\u00A0' : ''} ); })}

Güzelliğinize zarif bir dokunuş — uzman elinde, sakin bir atelyede.

4.97
Misafir Memnuniyeti · Google
Aşağı kaydır
{Array.from({length: 2}).map((_, k) => ( Cilt Bakımı Kalıcı Makyaj Kaş & Kirpik Protez Tırnak Medikal Bakım Lazer Epilasyon Makeup Studio ))}
); } window.Hero = Hero;