Spaces:
Running
Running
Upload folder using huggingface_hub
Browse files- assets/index-DqDIq9qp.js +0 -0
- index.html +41 -18
assets/index-DqDIq9qp.js
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
index.html
CHANGED
|
@@ -1,19 +1,42 @@
|
|
| 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 |
+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
| 7 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
| 8 |
+
<title>Edo Clicker</title>
|
| 9 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 10 |
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
| 11 |
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
| 12 |
+
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap" rel="stylesheet">
|
| 13 |
+
<style>
|
| 14 |
+
body {
|
| 15 |
+
font-family: 'Noto Serif JP', serif;
|
| 16 |
+
}
|
| 17 |
+
.wood-panel {
|
| 18 |
+
background-color: #6b4623; /* A wood-like color */
|
| 19 |
+
border: 4px solid #432d18;
|
| 20 |
+
box-shadow: 0 4px 6px rgba(0,0,0,0.3), inset 0 0 10px rgba(0,0,0,0.5);
|
| 21 |
+
}
|
| 22 |
+
.text-shadow {
|
| 23 |
+
text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
|
| 24 |
+
}
|
| 25 |
+
</style>
|
| 26 |
+
|
| 27 |
+
<link rel="stylesheet" href="/index.css">
|
| 28 |
+
<script type="importmap">
|
| 29 |
+
{
|
| 30 |
+
"imports": {
|
| 31 |
+
"react/": "https://aistudiocdn.com/react@^19.1.1/",
|
| 32 |
+
"react": "https://aistudiocdn.com/react@^19.1.1",
|
| 33 |
+
"react-dom/": "https://aistudiocdn.com/react-dom@^19.1.1/"
|
| 34 |
+
}
|
| 35 |
+
}
|
| 36 |
+
</script>
|
| 37 |
+
<script type="module" crossorigin src="/assets/index-DqDIq9qp.js"></script>
|
| 38 |
+
</head>
|
| 39 |
+
<body>
|
| 40 |
+
<div id="root"></div>
|
| 41 |
+
</body>
|
| 42 |
</html>
|