Some checks failed
CI/CD Pipeline / Solidity Contracts (push) Failing after 1m18s
CI/CD Pipeline / Security Scanning (push) Successful in 2m45s
CI/CD Pipeline / Lint and Format (push) Failing after 47s
CI/CD Pipeline / Terraform Validation (push) Failing after 28s
CI/CD Pipeline / Kubernetes Validation (push) Has been cancelled
Validation / validate-genesis (push) Has started running
Validation / validate-terraform (push) Has been cancelled
Validation / validate-kubernetes (push) Has been cancelled
Validation / validate-smart-contracts (push) Has been cancelled
Validation / validate-security (push) Has been cancelled
Validation / validate-documentation (push) Has been cancelled
Use short /settlement and /exchange paths in production so nginx maps them to backend /api/v1/* without double-prefix 404s. Align all nginx configs. Co-authored-by: Cursor <cursoragent@cursor.com>
42 lines
1.3 KiB
HTML
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>
|