bebechien commited on
Commit
165e2c0
·
verified ·
1 Parent(s): 7c7d2ac

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. assets/index-CX8Y15qh.js +0 -0
  2. index.html +46 -19
assets/index-CX8Y15qh.js ADDED
The diff for this file is too large to render. See raw diff
 
index.html CHANGED
@@ -1,19 +1,46 @@
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
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <link rel="icon" type="image/svg+xml" href="/vite.svg" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+ <title>조선 방치형 거상</title>
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <link rel="preconnect" href="https://fonts.googleapis.com">
10
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
11
+ <link href="https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@400;600;700&display=swap" rel="stylesheet">
12
+ <style>
13
+ body {
14
+ font-family: 'Noto Serif KR', serif;
15
+ }
16
+ @keyframes float-up {
17
+ from {
18
+ opacity: 1;
19
+ transform: translateY(0) translateX(-50%);
20
+ }
21
+ to {
22
+ opacity: 0;
23
+ transform: translateY(-50px) translateX(-50%);
24
+ }
25
+ }
26
+ .animate-float-up {
27
+ animation: float-up 1s ease-out forwards;
28
+ }
29
+ </style>
30
+
31
+ <link rel="stylesheet" href="/index.css">
32
+ <script type="importmap">
33
+ {
34
+ "imports": {
35
+ "react-dom/": "https://aistudiocdn.com/react-dom@^19.1.1/",
36
+ "react/": "https://aistudiocdn.com/react@^19.1.1/",
37
+ "react": "https://aistudiocdn.com/react@^19.1.1"
38
+ }
39
+ }
40
+ </script>
41
+ <script type="module" crossorigin src="/assets/index-CX8Y15qh.js"></script>
42
+ </head>
43
+ <body class="bg-stone-900 text-amber-50">
44
+ <div id="root"></div>
45
+ </body>
46
+ </html>