/* Home — dual-identity homepage (editorial canon + collector tools).
   HomeManifesto branches on `user`: 50/50 acquisition hero when logged out,
   collection-first retention ordering when logged in. */

function Home({ albums, onAlbum, onList, user, authReady, onCollection, onLeaderboards, onAuthOpen }) {
  return (
    <main className="stage">
      <HomeManifesto
        albums={albums}
        onAlbum={onAlbum}
        onList={onList}
        user={user}
        authReady={authReady}
        onCollection={onCollection}
        onLeaderboards={onLeaderboards}
        onAuthOpen={onAuthOpen}
      />
    </main>
  );
}

window.Home = Home;
