GodsDevProject's picture
Create governance-site/wiki/index.astro
4cf3ecd verified
---
const docs = [
"judicial-clerk-training",
"doj-deployment-memo",
"ao-cmecf-compatibility",
"state-court-adaptation",
"hf-trust-safety-justification",
"transparency-charter",
"governance-policy",
"threat-model",
"ai-risk",
"law-review-appendix"
];
---
<h1>Governance & Judicial Documentation</h1>
<ul>
{docs.map(d => (
<li>
<a href={`/wiki/${d}`}>{d.replace(/-/g, " ")}</a>
</li>
))}
</ul>