Some checks are pending
Documentation Lint & Validation / Markdown Linting (push) Waiting to run
Documentation Lint & Validation / Validate mdBook Configuration (push) Waiting to run
Documentation Lint & Validation / Content & Structure Validation (push) Waiting to run
Documentation Lint & Validation / Lint & Validation Summary (push) Blocked by required conditions
mdBook Build & Deploy / Build mdBook (push) Waiting to run
mdBook Build & Deploy / Documentation Quality Check (push) Blocked by required conditions
mdBook Build & Deploy / Deploy to GitHub Pages (push) Blocked by required conditions
mdBook Build & Deploy / Notification (push) Blocked by required conditions
Rust CI / Security Audit (push) Waiting to run
Rust CI / Check + Test + Lint (nightly) (push) Waiting to run
Rust CI / Check + Test + Lint (stable) (push) Waiting to run
64 lines
1.5 KiB
HTML
64 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>VAPORA - Multi-Agent Development Platform</title>
|
|
|
|
<!-- UnoCSS Generated CSS -->
|
|
<link rel="stylesheet" href="/assets/styles/website.css" />
|
|
|
|
<style>
|
|
/* Base reset */
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/* Root variables */
|
|
:root {
|
|
--bg-primary: #0a0118;
|
|
--bg-glass: rgba(255, 255, 255, 0.05);
|
|
--bg-glass-hover: rgba(255, 255, 255, 0.08);
|
|
--accent-cyan: #22d3ee;
|
|
--accent-purple: #a855f7;
|
|
--accent-pink: #ec4899;
|
|
--border-glass: rgba(34, 211, 238, 0.3);
|
|
--text-primary: #ffffff;
|
|
--text-secondary: #cbd5e1;
|
|
}
|
|
|
|
/* Base styles */
|
|
html, body {
|
|
width: 100%;
|
|
height: 100%;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
#app { width: 100%; height: 100%; }
|
|
|
|
/* Loading spinner */
|
|
.loading {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
@keyframes spin {
|
|
from { transform: rotate(0deg); }
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="app">
|
|
<div class="loading">Loading VAPORA...</div>
|
|
</div>
|
|
</body>
|
|
</html>
|