Summary
Contributors report the docs site showing "old content." Verified against the live site and the repo at main (6f1b36f): the full rewrite (PR #26) is deployed — the site is not globally stale. The reports trace to a small set of old surfaces that survived the rewrite. This issue documents them, with exact locations.
What is NOT the problem (to avoid a re-deploy misdiagnosis)
Checked directly against the live site:
- Old URLs are gone —
/solidarity-primitives/crowdstaking/ and /about/bread-token/ both return 404.
- New pages are live —
/tools/solidarity-fund/, /tools/solidarity-fund/yield-governance/, /token/, etc. all return 200.
- "Solidarity Primitives" appears nowhere in the repo or on the site.
- The previously-reported "…sDAI is helps fund" grammar typo does not exist anywhere.
The inner pages are new. The problem is narrow.
The real, surviving old surfaces
1. Homepage was never rewritten — the biggest cause. src/pages/index.astro:
- L14
title: 'Bread Cooperative Wiki' — live <title> = Bread Cooperative Wiki | Bread Docs (should be "Bread Docs")
- L36
Bread Crowdstaking Application (link to app.breadchain.xyz)
- L88
Crowdstaking Application (label on the link that points to /tools/solidarity-fund/)
The homepage is the first thing anyone skims, so the whole site looks old even though every inner page is new.
2. Archived project pages are still publicly reachable. src/content/projects/refi-dao.md and labor-dao.md are status: archived (correctly hidden from the homepage "Active Members" grid) but still served:
https://docs.bread.coop/projects/refi-dao/ → 200
https://docs.bread.coop/projects/labor-dao/ → 200
Anyone landing on these sees old "ReFi DAO" / "Labor DAO" content.
3. Residual "Crowdstaking" in two inner content files:
src/content/projects/bread-co-op.md:31 — **BREAD Crowdstaking Application**
src/content/docs/tools/solidarity-fund/how-to-become-a-member-project.md:44 — • [add new crowdstaking] (also looks like a leftover editorial placeholder)
4. (Minor/cosmetic) Possible duplicate sidebar entries. astro.config.mjs autogenerates the token / tools / organization sections and adds elevated slug: 'manifesto' + label: 'Contact' entries. If those pages also appear in an autogenerated section they'll render twice — please confirm in the rendered sidebar.
Suggested scope
How this was verified
Live URLs fetched directly (HTTP status + page content); repo read at main 6f1b36f. Not diffed against a remembered or cached view of the site.
Summary
Contributors report the docs site showing "old content." Verified against the live site and the repo at
main(6f1b36f): the full rewrite (PR #26) is deployed — the site is not globally stale. The reports trace to a small set of old surfaces that survived the rewrite. This issue documents them, with exact locations.What is NOT the problem (to avoid a re-deploy misdiagnosis)
Checked directly against the live site:
/solidarity-primitives/crowdstaking/and/about/bread-token/both return 404./tools/solidarity-fund/,/tools/solidarity-fund/yield-governance/,/token/, etc. all return 200.The inner pages are new. The problem is narrow.
The real, surviving old surfaces
1. Homepage was never rewritten — the biggest cause.
src/pages/index.astro:title: 'Bread Cooperative Wiki'— live<title>=Bread Cooperative Wiki | Bread Docs(should be "Bread Docs")Bread Crowdstaking Application(link toapp.breadchain.xyz)Crowdstaking Application(label on the link that points to/tools/solidarity-fund/)The homepage is the first thing anyone skims, so the whole site looks old even though every inner page is new.
2. Archived project pages are still publicly reachable.
src/content/projects/refi-dao.mdandlabor-dao.mdarestatus: archived(correctly hidden from the homepage "Active Members" grid) but still served:https://docs.bread.coop/projects/refi-dao/→ 200https://docs.bread.coop/projects/labor-dao/→ 200Anyone landing on these sees old "ReFi DAO" / "Labor DAO" content.
3. Residual "Crowdstaking" in two inner content files:
src/content/projects/bread-co-op.md:31—**BREAD Crowdstaking Application**src/content/docs/tools/solidarity-fund/how-to-become-a-member-project.md:44—• [add new crowdstaking](also looks like a leftover editorial placeholder)4. (Minor/cosmetic) Possible duplicate sidebar entries.
astro.config.mjsautogenerates thetoken/tools/organizationsections and adds elevatedslug: 'manifesto'+label: 'Contact'entries. If those pages also appear in an autogenerated section they'll render twice — please confirm in the rendered sidebar.Suggested scope
src/pages/index.astro): title → "Bread Docs"; replace "Bread Crowdstaking Application" / "Crowdstaking Application" with the current "Solidarity Fund" wording (needs homepage copy from the content author).refi-dao.md/labor-dao.md(+ any old stubs) or confirm they should remain publicly reachable.How this was verified
Live URLs fetched directly (HTTP status + page content); repo read at
main6f1b36f. Not diffed against a remembered or cached view of the site.