Files
smom-dbis-138/frontend-dapp/index.html
zaragoza444 b17df7ef14
Some checks failed
CI/CD Pipeline / Solidity Contracts (push) Failing after 1m16s
CI/CD Pipeline / Security Scanning (push) Successful in 2m23s
CI/CD Pipeline / Lint and Format (push) Failing after 44s
CI/CD Pipeline / Terraform Validation (push) Failing after 24s
CI/CD Pipeline / Kubernetes Validation (push) Successful in 26s
Deploy ChainID 138 / Deploy ChainID 138 (push) Failing after 39s
Validation / validate-genesis (push) Successful in 26s
Validation / validate-terraform (push) Failing after 24s
Validation / validate-kubernetes (push) Failing after 10s
Validation / validate-smart-contracts (push) Failing after 9s
Validation / validate-security (push) Failing after 1m28s
Validation / validate-documentation (push) Failing after 20s
Verify Deployment / Verify Deployment (push) Failing after 54s
fix: resolve black-screen UI from stale CDN assets and API paths
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-28 19:31:33 -07:00

42 lines
1.3 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OMNL Mission Control — Chain 138</title>
<style>
html, body { margin: 0; min-height: 100%; background: #0f2847; color: #e8f4ff; }
#root { min-height: 100vh; }
.omnl-boot {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 1rem;
font-family: Inter, system-ui, sans-serif;
background:
radial-gradient(ellipse at 20% 0%, rgba(45, 107, 184, 0.45) 0%, transparent 55%),
linear-gradient(180deg, #0f2847 0%, #0a1a30 100%);
}
.omnl-boot__title {
font-size: 1.1rem;
letter-spacing: 0.12em;
text-transform: uppercase;
color: #00d4ff;
}
.omnl-boot__hint { color: #9bb8d4; font-size: 0.9rem; }
</style>
</head>
<body>
<div id="root">
<div class="omnl-boot" role="status" aria-live="polite">
<div class="omnl-boot__title">OMNL Mission Control</div>
<div class="omnl-boot__hint">Loading dashboard…</div>
</div>
</div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>