This repository was archived by the owner on Mar 16, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
181 lines (169 loc) · 4.46 KB
/
index.html
File metadata and controls
181 lines (169 loc) · 4.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="capsule-id" content="HomepageRewrite">
<meta name="validator" content="TrustGrid">
<meta name="trust-score" content="92">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gravity Binary</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet">
<style>
html {
font-size: 22px;
}
body {
margin: 0;
font-family: "Inter", sans-serif;
background: #F5F7FA;
color: #1A1A1A;
line-height: 1.6;
-webkit-text-size-adjust: 100%;
text-size-adjust: 100%;
font-size: 1rem;
}
h1 {
font-size: clamp(2rem, 8vw, 4rem);
line-height: 1.1;
margin: 0;
color: #0052CC;
}
h2 {
font-size: clamp(1.5rem, 6vw, 3rem);
color: #333333;
}
h3 {
font-size: clamp(1.2rem, 5vw, 2rem);
color: #0052CC;
margin-top: 0;
}
p, nav a {
font-size: clamp(1rem, 4vw, 1.5rem);
color: #1A1A1A;
}
header {
text-align: center;
padding: 60px 20px 40px;
}
nav ul {
display: flex;
justify-content: center;
list-style: none;
padding: 0;
margin: 0 0 40px 0;
flex-wrap: wrap;
}
nav li {
margin: 0 20px;
}
nav a {
text-decoration: none;
font-weight: 600;
}
section.capsule {
width: 90%;
max-width: 600px;
margin: 1rem auto;
padding: 1rem;
box-sizing: border-box;
background: #f9f9f9;
border: 1px solid #ccc;
border-radius: 6px;
font-size: clamp(1rem, 2vw, 1.2rem);
display: flex;
flex-direction: column;
}
.dashboard {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1rem;
padding: 1rem;
}
.validator {
background: #e6f0ff;
border-left: 6px solid #0052CC;
padding: 1rem;
margin: 1rem auto;
max-width: 600px;
font-size: clamp(1rem, 2vw, 1.2rem);
}
.reflex {
background: #fff3f3;
border-left: 6px solid #cc0000;
padding: 1rem;
margin: 1rem auto;
max-width: 600px;
font-size: clamp(1rem, 2vw, 1.2rem);
}
.service {
background: #f0fff0;
border-left: 6px solid #00aa00;
padding: 1rem;
margin: 1rem auto;
max-width: 600px;
font-size: clamp(1rem, 2vw, 1.2rem);
}
footer {
text-align: center;
padding: 40px;
font-size: clamp(1rem, 3vw, 1.5rem);
color: #888888;
}
</style>
</head>
<body>
<header>
<h1>Gravity Binary</h1>
<h2>Architecture</h2>
<p>Modular Trust Engine</p>
</header>
<nav>
<ul>
<li><a href="/adminResume">Admin Resume</a></li>
<li><a href="/echoCollapse">Echo Collapse</a></li>
<li><a href="/capsuleDashboard">Capsule Grid</a></li>
</ul>
</nav>
<!-- Capsule Grid -->
<section class="dashboard">
<section class="capsule" data-name="AIWallet" data-score="92">
<h3>AIWallet Capsule</h3>
<p>Validator: TrustGrid | EchoCollapse: Stable</p>
</section>
<section class="capsule" data-name="AdminResume" data-score="88">
<h3>Resume Capsule</h3>
<p>Role: Administrator | Status: Queued</p>
</section>
<section class="capsule" data-name="EchoCollapse" data-score="76">
<h3>Reflex Capsule</h3>
<p>Severity: Critical | Recovery ETA: 19s</p>
</section>
<section class="capsule" data-name="AIInsuranceAgent" data-score="94">
<h3>AIInsuranceAgent Capsule</h3>
<p>Validator: TrustGrid | EchoCollapse: Stable | Status: Live</p>
</section>
<section class="capsule" data-name="Profit Capsule" data-status="Active">
<h3>Profit Capsule</h3>
<p>Offering: Modular Toolkit | Access: Public | Monetization: Service Grid</p>
</section>
</section>
<!-- Validator Overlay -->
<section class="validator">
<h3>TrustGrid Validator</h3>
<p>All capsules routed through TrustGrid. EchoCollapse status: Stable. Trust score: 92.</p>
</section>
<!-- Reflex Trigger Capsule -->
<section class="reflex">
<h3>Reflex Trigger Capsule</h3>
<p>CI/CD introspection active. Symbolic audit loop detected. Recovery ETA: 19s.</p>
</section>
<!-- Service Grid Capsule -->
<section class="service">
<h3>Service Grid Capsule</h3>
<p>Freelance hooks available. Modular toolkit activation pending. Donation badge optional.</p>
</section>
<footer>
© 2025 Gravity Binary. All capsules routed.
</footer>
</body>
</html>