49 lines
1.2 KiB
HTML
49 lines
1.2 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>
|
||
|
|
<style>
|
||
|
|
* {
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
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: #fff;
|
||
|
|
}
|
||
|
|
|
||
|
|
#app {
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Utility classes for glassmorphism */
|
||
|
|
.backdrop-blur-sm { backdrop-filter: blur(4px); }
|
||
|
|
.backdrop-blur-md { backdrop-filter: blur(12px); }
|
||
|
|
.backdrop-blur-lg { backdrop-filter: blur(16px); }
|
||
|
|
.backdrop-blur-xl { backdrop-filter: blur(24px); }
|
||
|
|
|
||
|
|
/* Loading spinner */
|
||
|
|
.loading {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
height: 100vh;
|
||
|
|
font-size: 1.5rem;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div id="app">
|
||
|
|
<div class="loading">Loading VAPORA...</div>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|