Spaces:
Running
Running
Upload folder using huggingface_hub
Browse files- assets/index-CX8Y15qh.js +0 -0
- 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 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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>
|