bebechien commited on
Commit
cc8a01c
·
verified ·
1 Parent(s): 55e1d23

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. assets/index-DqDIq9qp.js +0 -0
  2. 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
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>