// Gallery page — Coming Soon
function PageGallery({ lang }) {
  const t = window.CONTENT[lang].gallery;
  return (
    <div>
      <section style={{ padding: '80px 0 60px', borderBottom: '1px solid var(--border)' }}>
        <div className="container">
          <div className="eyebrow" style={{ marginBottom: 28 }}>{t.eyebrow}</div>
          <h1 className="display display-xxl" style={{ marginBottom: 40 }}>
            <div>{t.title_1}</div>
            <div style={{ color: 'var(--accent)' }}>{t.title_2}</div>
          </h1>
        </div>
      </section>
      <section className="section">
        <div className="container">
          <ComingSoon note={t.coming_note} label="FOTO · VIDEO · DIN TURE" />
        </div>
      </section>
    </div>
  );
}
window.PageGallery = PageGallery;
