GodsDevProject commited on
Commit
4cf3ecd
·
verified ·
1 Parent(s): d1bc9ce

Create governance-site/wiki/index.astro

Browse files
Files changed (1) hide show
  1. governance-site/wiki/index.astro +24 -0
governance-site/wiki/index.astro ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ const docs = [
3
+ "judicial-clerk-training",
4
+ "doj-deployment-memo",
5
+ "ao-cmecf-compatibility",
6
+ "state-court-adaptation",
7
+ "hf-trust-safety-justification",
8
+ "transparency-charter",
9
+ "governance-policy",
10
+ "threat-model",
11
+ "ai-risk",
12
+ "law-review-appendix"
13
+ ];
14
+ ---
15
+
16
+ <h1>Governance & Judicial Documentation</h1>
17
+
18
+ <ul>
19
+ {docs.map(d => (
20
+ <li>
21
+ <a href={`/wiki/${d}`}>{d.replace(/-/g, " ")}</a>
22
+ </li>
23
+ ))}
24
+ </ul>