Bitsage commited on
Commit
6f5367b
1 Parent(s): 79ed577

fix: switch Space to static landing

Browse files
Files changed (2) hide show
  1. README.md +2 -4
  2. index.html +65 -0
README.md CHANGED
@@ -3,10 +3,8 @@ title: CROVIA 路 Start Here
3
  emoji: 馃Л
4
  colorFrom: purple
5
  colorTo: gray
6
- sdk: gradio
7
- sdk_version: 4.36.1
8
- python_version: "3.11"
9
- app_file: app.py
10
  pinned: true
11
  short_description: Public entry point to Crovia evidence surfaces
12
  tags:
 
3
  emoji: 馃Л
4
  colorFrom: purple
5
  colorTo: gray
6
+ sdk: static
7
+ app_file: index.html
 
 
8
  pinned: true
9
  short_description: Public entry point to Crovia evidence surfaces
10
  tags:
index.html ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>CROVIA 路 Start Here</title>
7
+ <style>
8
+ :root{--bg:#05060a;--panel:#0b1020;--line:rgba(255,255,255,.12);--ink:#e5e7eb;--mut:#94a3b8;--acc:#38bdf8;--acc2:#a78bfa;}
9
+ html,body{margin:0;padding:0;background:var(--bg);color:var(--ink);font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;}
10
+ a{color:var(--acc);text-decoration:none;border-bottom:1px solid rgba(56,189,248,.35)}
11
+ a:hover{border-bottom-color:var(--acc)}
12
+ .wrap{max-width:920px;margin:28px auto;padding:0 16px;}
13
+ .card{border:1px solid var(--line);border-radius:16px;background:linear-gradient(180deg,#070a12,#05060a);padding:22px 22px 18px;}
14
+ h1{margin:0 0 6px 0;letter-spacing:.14em;text-transform:uppercase;font-size:28px;}
15
+ .sub{color:var(--mut);margin-bottom:18px;line-height:1.5}
16
+ h3{margin:18px 0 8px 0;color:var(--acc2);font-size:13px;letter-spacing:.12em;text-transform:uppercase}
17
+ .section{margin-bottom:10px}
18
+ ul{margin:8px 0 0 18px;padding:0}
19
+ li{margin:6px 0;}
20
+ .note{margin-top:16px;color:#cbd5e1;line-height:1.6;font-size:13px}
21
+ .foot{margin-top:16px;color:var(--mut);font-size:12px}
22
+ </style>
23
+ </head>
24
+ <body>
25
+ <div class="wrap">
26
+ <div class="card">
27
+ <h1>CROVIA 路 Start Here</h1>
28
+ <div class="sub">If AI is trained on data, there must be evidence.</div>
29
+
30
+ <h3>Official Surfaces (Public)</h3>
31
+ <div class="section">
32
+ <ul>
33
+ <li><a href="https://croviatrust.com/" target="_blank" rel="noreferrer">croviatrust.com</a></li>
34
+ <li><a href="https://registry.croviatrust.com/registry" target="_blank" rel="noreferrer">registry.croviatrust.com/registry</a></li>
35
+ <li><a href="https://registry.croviatrust.com/registry/omissions" target="_blank" rel="noreferrer">registry.croviatrust.com/registry/omissions</a></li>
36
+ </ul>
37
+ </div>
38
+
39
+ <h3>HuggingFace Spaces (Public)</h3>
40
+ <div class="section">
41
+ <ul>
42
+ <li><a href="https://huggingface.co/spaces/Crovia/omission-oracle" target="_blank" rel="noreferrer">Registry Observer</a></li>
43
+ <li><a href="https://huggingface.co/spaces/Crovia/cep-terminal" target="_blank" rel="noreferrer">CEP Terminal</a></li>
44
+ </ul>
45
+ </div>
46
+
47
+ <h3>HuggingFace Datasets (Public)</h3>
48
+ <div class="section">
49
+ <ul>
50
+ <li><a href="https://huggingface.co/datasets/Crovia/global-ai-training-omissions" target="_blank" rel="noreferrer">Global AI Training Omissions</a></li>
51
+ <li><a href="https://huggingface.co/datasets/Crovia/cep-capsules" target="_blank" rel="noreferrer">CEP Reference Capsules</a></li>
52
+ </ul>
53
+ </div>
54
+
55
+ <h3>Open Plane</h3>
56
+ <div class="note">Records observations of evidence presence and evidence absence. Publishes verifiable surfaces (timestamps, hashes, merkle roots, append-only artifacts). No judgment. No settlement claims.</div>
57
+
58
+ <h3>Pro Plane (Not publicly deployed)</h3>
59
+ <div class="note">Crovia also defines a production/enterprise plane (settlement, attestation, private proofs). This Space does not expose it.</div>
60
+
61
+ <div class="foot">Source: <a href="https://github.com/croviatrust" target="_blank" rel="noreferrer">github.com/croviatrust</a></div>
62
+ </div>
63
+ </div>
64
+ </body>
65
+ </html>