// HomeView — the landing page. Conversion-focused and deliberately distinct
// from /product (which owns the product mechanics). Flow: live-scan hero (see
// it work) → design-partner proof (TrustBand) → why-us wedges → one real proof
// artifact → 3 ways to start → FAQ → footer. The deep "how it works" content
// (pipeline, attack graph, comparison, integrations) lives on /product, not
// here, so the two pages aren't near-duplicates. The deck (StoryView) stays
// at /deck for A/B.

function HomeView({ tweaks }) {
  const { React } = window;
  return (
    <React.Fragment>
      <window.LiveScanReplay tweaks={tweaks} />
      <window.ScanYourRepo />
      <window.WedgesBand />
      <window.StartPaths />
      <window.ProductFaq />
    </React.Fragment>
  );
}

window.HomeView = HomeView;
