// ProofNotProbabilityView — the original conversion-focused landing page,
// preserved verbatim and relocated under /product/proof-not-probability/.
// Flow: live-scan hero (see it work) → scan-your-repo CTA → why-us wedges →
// 3 ways to start → FAQ → footer. The deep "how it works" content (pipeline,
// attack graph, comparison, integrations) lives on /product, not here.
//
// This was the site's home view; it now lives in the product menu as
// "proof not probability". The new home view is components/home/HomeView.jsx.

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

window.ProofNotProbabilityView = ProofNotProbabilityView;
