-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 1.01 KB
/
Copy pathindex.html
File metadata and controls
39 lines (39 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OmniBioAI Studio</title>
<style>
#loader {
font-family: system-ui, sans-serif;
display: flex;
height: 100vh;
align-items: center;
justify-content: center;
flex-direction: column;
background: #0a0c10;
color: #e8eaf0;
}
.spinner {
width: 40px;
height: 40px;
border: 3px solid rgba(255,255,255,0.1);
border-top: 3px solid #00e5a0;
border-radius: 50%;
animation: spin 1s linear infinite;
margin-bottom: 16px;
}
@keyframes spin { 100% { transform: rotate(360deg); } }
</style>
</head>
<body>
<div id="root">
<div id="loader">
<div class="spinner"></div>
<div>Starting OmniBioAI Studio...</div>
</div>
</div>
<script type="module" src="/src/ui/main.jsx"></script>
</body>
</html>