Spaces:
Running
Running
logo
Browse files- components/api-keys.html +4 -5
- components/dashboard.html +4 -5
- components/logo-player.js +2 -3
- components/usage.html +4 -5
- index.html +4 -4
components/api-keys.html
CHANGED
|
@@ -32,11 +32,10 @@
|
|
| 32 |
<div class="w-64 bg-white border-r border-gray-200 flex flex-col">
|
| 33 |
<!-- Logo -->
|
| 34 |
<div class="p-6 border-b border-gray-200">
|
| 35 |
-
<
|
| 36 |
<div class="text-sm text-gray-500 mt-1">Clean docs for LLMs</div>
|
| 37 |
</div>
|
| 38 |
-
|
| 39 |
-
<!-- Navigation -->
|
| 40 |
<nav class="flex-1 p-4">
|
| 41 |
<ul class="space-y-2">
|
| 42 |
<li>
|
|
@@ -125,9 +124,9 @@
|
|
| 125 |
</div>
|
| 126 |
</div>
|
| 127 |
</div>
|
| 128 |
-
|
| 129 |
<script src="../script.js"></script>
|
| 130 |
<script src="api-keys.js"></script>
|
| 131 |
<script>feather.replace();</script>
|
| 132 |
</body>
|
| 133 |
-
</html>
|
|
|
|
| 32 |
<div class="w-64 bg-white border-r border-gray-200 flex flex-col">
|
| 33 |
<!-- Logo -->
|
| 34 |
<div class="p-6 border-b border-gray-200">
|
| 35 |
+
<logo-player></logo-player>
|
| 36 |
<div class="text-sm text-gray-500 mt-1">Clean docs for LLMs</div>
|
| 37 |
</div>
|
| 38 |
+
<!-- Navigation -->
|
|
|
|
| 39 |
<nav class="flex-1 p-4">
|
| 40 |
<ul class="space-y-2">
|
| 41 |
<li>
|
|
|
|
| 124 |
</div>
|
| 125 |
</div>
|
| 126 |
</div>
|
| 127 |
+
<script src="../components/logo-player.js"></script>
|
| 128 |
<script src="../script.js"></script>
|
| 129 |
<script src="api-keys.js"></script>
|
| 130 |
<script>feather.replace();</script>
|
| 131 |
</body>
|
| 132 |
+
</html>
|
components/dashboard.html
CHANGED
|
@@ -32,11 +32,10 @@
|
|
| 32 |
<div class="w-64 bg-white border-r border-gray-200 flex flex-col">
|
| 33 |
<!-- Logo -->
|
| 34 |
<div class="p-6 border-b border-gray-200">
|
| 35 |
-
<
|
| 36 |
<div class="text-sm text-gray-500 mt-1">Clean docs for LLMs</div>
|
| 37 |
</div>
|
| 38 |
-
|
| 39 |
-
<!-- Navigation -->
|
| 40 |
<nav class="flex-1 p-4">
|
| 41 |
<ul class="space-y-2">
|
| 42 |
<li>
|
|
@@ -172,9 +171,9 @@
|
|
| 172 |
</div>
|
| 173 |
</div>
|
| 174 |
</div>
|
| 175 |
-
|
| 176 |
<script src="../script.js"></script>
|
| 177 |
<script src="dashboard.js"></script>
|
| 178 |
<script>feather.replace();</script>
|
| 179 |
</body>
|
| 180 |
-
</html>
|
|
|
|
| 32 |
<div class="w-64 bg-white border-r border-gray-200 flex flex-col">
|
| 33 |
<!-- Logo -->
|
| 34 |
<div class="p-6 border-b border-gray-200">
|
| 35 |
+
<logo-player></logo-player>
|
| 36 |
<div class="text-sm text-gray-500 mt-1">Clean docs for LLMs</div>
|
| 37 |
</div>
|
| 38 |
+
<!-- Navigation -->
|
|
|
|
| 39 |
<nav class="flex-1 p-4">
|
| 40 |
<ul class="space-y-2">
|
| 41 |
<li>
|
|
|
|
| 171 |
</div>
|
| 172 |
</div>
|
| 173 |
</div>
|
| 174 |
+
<script src="../components/logo-player.js"></script>
|
| 175 |
<script src="../script.js"></script>
|
| 176 |
<script src="dashboard.js"></script>
|
| 177 |
<script>feather.replace();</script>
|
| 178 |
</body>
|
| 179 |
+
</html>
|
components/logo-player.js
CHANGED
|
@@ -61,10 +61,9 @@ class LogoPlayer extends HTMLElement {
|
|
| 61 |
|
| 62 |
<div class="logo-container">
|
| 63 |
<video autoplay loop muted playsinline preload="auto" id="logo-video">
|
| 64 |
-
<source src="https://
|
| 65 |
-
<source src="https://wash.video/logo.webm" type="video/webm">
|
| 66 |
</video>
|
| 67 |
-
|
| 68 |
</div>
|
| 69 |
`;
|
| 70 |
|
|
|
|
| 61 |
|
| 62 |
<div class="logo-container">
|
| 63 |
<video autoplay loop muted playsinline preload="auto" id="logo-video">
|
| 64 |
+
<source src="https://huggingface.co/spaces/A634579/wash-dev-site/resolve/main/videos/grok-video-change%20satoshi%20to%20wash-7968b2ad-ed0b-43e0-882f-4a76de560ccb-image-edit-0_0.mp4" type="video/mp4">
|
|
|
|
| 65 |
</video>
|
| 66 |
+
<div class="fallback">Wash</div>
|
| 67 |
</div>
|
| 68 |
`;
|
| 69 |
|
components/usage.html
CHANGED
|
@@ -32,11 +32,10 @@
|
|
| 32 |
<div class="w-64 bg-white border-r border-gray-200 flex flex-col">
|
| 33 |
<!-- Logo -->
|
| 34 |
<div class="p-6 border-b border-gray-200">
|
| 35 |
-
<
|
| 36 |
<div class="text-sm text-gray-500 mt-1">Clean docs for LLMs</div>
|
| 37 |
</div>
|
| 38 |
-
|
| 39 |
-
<!-- Navigation -->
|
| 40 |
<nav class="flex-1 p-4">
|
| 41 |
<ul class="space-y-2">
|
| 42 |
<li>
|
|
@@ -241,10 +240,10 @@
|
|
| 241 |
</div>
|
| 242 |
</div>
|
| 243 |
</div>
|
| 244 |
-
|
| 245 |
<script src="../script.js"></script>
|
| 246 |
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
| 247 |
<script src="usage.js"></script>
|
| 248 |
<script>feather.replace();</script>
|
| 249 |
</body>
|
| 250 |
-
</html>
|
|
|
|
| 32 |
<div class="w-64 bg-white border-r border-gray-200 flex flex-col">
|
| 33 |
<!-- Logo -->
|
| 34 |
<div class="p-6 border-b border-gray-200">
|
| 35 |
+
<logo-player></logo-player>
|
| 36 |
<div class="text-sm text-gray-500 mt-1">Clean docs for LLMs</div>
|
| 37 |
</div>
|
| 38 |
+
<!-- Navigation -->
|
|
|
|
| 39 |
<nav class="flex-1 p-4">
|
| 40 |
<ul class="space-y-2">
|
| 41 |
<li>
|
|
|
|
| 240 |
</div>
|
| 241 |
</div>
|
| 242 |
</div>
|
| 243 |
+
<script src="../components/logo-player.js"></script>
|
| 244 |
<script src="../script.js"></script>
|
| 245 |
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
| 246 |
<script src="usage.js"></script>
|
| 247 |
<script>feather.replace();</script>
|
| 248 |
</body>
|
| 249 |
+
</html>
|
index.html
CHANGED
|
@@ -32,9 +32,9 @@
|
|
| 32 |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 33 |
<div class="flex justify-between items-center h-16">
|
| 34 |
<div class="flex items-center">
|
| 35 |
-
<
|
| 36 |
</div>
|
| 37 |
-
|
| 38 |
<div class="ml-10 flex items-baseline space-x-4">
|
| 39 |
<a href="#pricing" class="text-gray-600 hover:text-primary-600 px-3 py-2 text-sm font-medium transition">Pricing</a>
|
| 40 |
<a href="app.wash.dev" class="bg-primary-600 text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-primary-700 transition">Dashboard</a>
|
|
@@ -273,9 +273,9 @@
|
|
| 273 |
</div>
|
| 274 |
</div>
|
| 275 |
</footer>
|
| 276 |
-
|
| 277 |
<script src="script.js"></script>
|
| 278 |
<script>feather.replace();</script>
|
| 279 |
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
|
| 280 |
</body>
|
| 281 |
-
</html>
|
|
|
|
| 32 |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 33 |
<div class="flex justify-between items-center h-16">
|
| 34 |
<div class="flex items-center">
|
| 35 |
+
<logo-player></logo-player>
|
| 36 |
</div>
|
| 37 |
+
<div class="hidden md:block">
|
| 38 |
<div class="ml-10 flex items-baseline space-x-4">
|
| 39 |
<a href="#pricing" class="text-gray-600 hover:text-primary-600 px-3 py-2 text-sm font-medium transition">Pricing</a>
|
| 40 |
<a href="app.wash.dev" class="bg-primary-600 text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-primary-700 transition">Dashboard</a>
|
|
|
|
| 273 |
</div>
|
| 274 |
</div>
|
| 275 |
</footer>
|
| 276 |
+
<script src="components/logo-player.js"></script>
|
| 277 |
<script src="script.js"></script>
|
| 278 |
<script>feather.replace();</script>
|
| 279 |
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
|
| 280 |
</body>
|
| 281 |
+
</html>
|