Spaces:
Running
Running
Upload index.html
Browse files- index.html +59 -18
index.html
CHANGED
|
@@ -1,19 +1,60 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
</html>
|
|
|
|
| 1 |
+
|
| 2 |
+
<!DOCTYPE html>
|
| 3 |
+
<html lang="en">
|
| 4 |
+
<head>
|
| 5 |
+
<meta charset="UTF-8">
|
| 6 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 7 |
+
<title>OmniAPI | The Autonomous Workbench</title>
|
| 8 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 9 |
+
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Fira+Code:wght@400;500&display=swap" rel="stylesheet">
|
| 10 |
+
<!-- Swagger UI Assets -->
|
| 11 |
+
<link rel="stylesheet" href="https://unpkg.com/swagger-ui-dist@5.11.0/swagger-ui.css" />
|
| 12 |
+
<script src="https://unpkg.com/swagger-ui-dist@5.11.0/swagger-ui-bundle.js"></script>
|
| 13 |
+
<!-- YAML Parser for local industrial-scale handling -->
|
| 14 |
+
<script src="https://cdn.jsdelivr.net/npm/js-yaml@4.1.0/dist/js-yaml.min.js"></script>
|
| 15 |
+
<style>
|
| 16 |
+
:root {
|
| 17 |
+
--bg-deep: #020617;
|
| 18 |
+
--accent: #6366f1;
|
| 19 |
+
--sidebar: #0f172a;
|
| 20 |
+
}
|
| 21 |
+
body {
|
| 22 |
+
font-family: 'Plus Jakarta Sans', sans-serif;
|
| 23 |
+
background-color: var(--bg-deep);
|
| 24 |
+
color: #f8fafc;
|
| 25 |
+
overflow: hidden;
|
| 26 |
+
-webkit-font-smoothing: antialiased;
|
| 27 |
+
}
|
| 28 |
+
.code-font {
|
| 29 |
+
font-family: 'Fira Code', monospace;
|
| 30 |
+
}
|
| 31 |
+
.glass {
|
| 32 |
+
background: rgba(15, 23, 42, 0.6);
|
| 33 |
+
backdrop-filter: blur(12px);
|
| 34 |
+
border: 1px solid rgba(255, 255, 255, 0.05);
|
| 35 |
+
}
|
| 36 |
+
.swagger-ui { filter: invert(90%) hue-rotate(180deg) brightness(1.2); }
|
| 37 |
+
.swagger-ui .topbar { display: none; }
|
| 38 |
+
::-webkit-scrollbar { width: 4px; height: 4px; }
|
| 39 |
+
::-webkit-scrollbar-track { background: transparent; }
|
| 40 |
+
::-webkit-scrollbar-thumb { background: #334155; border-radius: 10px; }
|
| 41 |
+
</style>
|
| 42 |
+
|
| 43 |
+
<link rel="stylesheet" href="/index.css">
|
| 44 |
+
<script type="importmap">
|
| 45 |
+
{
|
| 46 |
+
"imports": {
|
| 47 |
+
"react": "https://esm.sh/react@^19.2.3",
|
| 48 |
+
"react-dom/": "https://esm.sh/react-dom@^19.2.3/",
|
| 49 |
+
"react/": "https://esm.sh/react@^19.2.3/",
|
| 50 |
+
"@google/genai": "https://esm.sh/@google/genai@^1.34.0",
|
| 51 |
+
"lucide-react": "https://esm.sh/lucide-react@^0.562.0"
|
| 52 |
+
}
|
| 53 |
+
}
|
| 54 |
+
</script>
|
| 55 |
+
<script type="module" crossorigin src="/assets/index-DrB8bz2i.js"></script>
|
| 56 |
+
</head>
|
| 57 |
+
<body>
|
| 58 |
+
<div id="root"></div>
|
| 59 |
+
</body>
|
| 60 |
</html>
|