// app.jsx — Ana sayfa (index.html)
// Kısa versiyon: Hero → Marquee → ServicesSummary → AboutShort → WhyUs → ContactCard

const url = new URL(window.location.href);
const accent = url.searchParams.get('accent') || localStorage.getItem('tn_accent') || 'rose';
localStorage.setItem('tn_accent', accent);
applyAccent(accent);

function App() {
  useReveal();
  return (
    <>
      <Nav current="home" base="" />
      <Hero variant="photo" onBook={() => window.location.href = 'iletisim.html#randevu'} />
      <Marquee />
      <ServicesSummary />
      <WhyUs />
      <Reviews />
      <ContactCard />
      <Footer base="" />
    </>
  );
}

ReactDOM.createRoot(document.getElementById('root')).render(<App />);
