// landing-v3-app.jsx — composes the Ssup v3 landing (hero + section + v3 footer with legal links).
function SsupLandingV3() {
  return (
    <div className="lp-root">
      <div className="lp-mapbg"><MapBgTiles /></div>
      <LPNav />
      <LPHero />
      <LPSecond />
      <LPFooterV3 />
    </div>
  );
}
ReactDOM.createRoot(document.getElementById('root')).render(<SsupLandingV3 />);
