Spaces:
Running
Running
Upload index.html
Browse files- index.html +46 -0
index.html
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="utf-8" />
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
| 6 |
+
<meta name="theme-color" content="#1E2B38" />
|
| 7 |
+
<title>Project Atlas - Digital Workspace</title>
|
| 8 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 9 |
+
<style>
|
| 10 |
+
body { margin: 0; padding: 0; background-color: #1E2B38; overflow: hidden; }
|
| 11 |
+
/* Custom Scrollbar for Atlas Theme */
|
| 12 |
+
.custom-scrollbar::-webkit-scrollbar {
|
| 13 |
+
width: 8px;
|
| 14 |
+
}
|
| 15 |
+
.custom-scrollbar::-webkit-scrollbar-track {
|
| 16 |
+
background: #2C3E50;
|
| 17 |
+
}
|
| 18 |
+
.custom-scrollbar::-webkit-scrollbar-thumb {
|
| 19 |
+
background-color: #3498DB;
|
| 20 |
+
border-radius: 4px;
|
| 21 |
+
}
|
| 22 |
+
@keyframes pulse-once {
|
| 23 |
+
0%, 100% { opacity: 1; }
|
| 24 |
+
50% { opacity: 0.5; }
|
| 25 |
+
}
|
| 26 |
+
.animate-pulse-once {
|
| 27 |
+
animation: pulse-once 2s cubic-bezier(0.4, 0, 0.6, 1) 1;
|
| 28 |
+
}
|
| 29 |
+
</style>
|
| 30 |
+
|
| 31 |
+
<link rel="stylesheet" href="/index.css">
|
| 32 |
+
<script type="importmap">
|
| 33 |
+
{
|
| 34 |
+
"imports": {
|
| 35 |
+
"react/": "https://esm.sh/react@^19.2.3/",
|
| 36 |
+
"react": "https://esm.sh/react@^19.2.3",
|
| 37 |
+
"react-dom/": "https://esm.sh/react-dom@^19.2.3/"
|
| 38 |
+
}
|
| 39 |
+
}
|
| 40 |
+
</script>
|
| 41 |
+
<script type="module" crossorigin src="/assets/index-CohqO3JO.js"></script>
|
| 42 |
+
</head>
|
| 43 |
+
<body>
|
| 44 |
+
<div id="root"></div>
|
| 45 |
+
</body>
|
| 46 |
+
</html>
|