admin08077 commited on
Commit
13174d6
·
verified ·
1 Parent(s): 70185cd

Upload index.html

Browse files
Files changed (1) hide show
  1. index.html +78 -18
index.html CHANGED
@@ -1,19 +1,79 @@
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
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <title>Vertex Sovereign - Hand Drawn Edition</title>
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <link href="https://fonts.googleapis.com/css2?family=Architects+Daughter&family=Gaegu:wght@400;700&display=swap" rel="stylesheet">
10
+ <style>
11
+ :root {
12
+ --sketch-bg: #ffffff;
13
+ --sketch-fg: #000000;
14
+ }
15
+ body {
16
+ font-family: 'Architects Daughter', cursive;
17
+ background-color: var(--sketch-bg);
18
+ color: var(--sketch-fg);
19
+ margin: 0;
20
+ padding: 0;
21
+ overflow-x: hidden;
22
+ }
23
+ .sketch-border {
24
+ border: 2px solid black;
25
+ border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
26
+ }
27
+ .sketch-shadow {
28
+ box-shadow: 5px 5px 0px 0px rgba(0,0,0,1);
29
+ }
30
+ /* Custom scrollbar - sketchy style */
31
+ ::-webkit-scrollbar {
32
+ width: 10px;
33
+ }
34
+ ::-webkit-scrollbar-track {
35
+ background: #fff;
36
+ border-left: 1px solid black;
37
+ }
38
+ ::-webkit-scrollbar-thumb {
39
+ background: #000;
40
+ border: 2px solid #fff;
41
+ }
42
+ .sketch-btn:hover {
43
+ transform: translate(-2px, -2px);
44
+ box-shadow: 7px 7px 0px 0px rgba(0,0,0,1);
45
+ }
46
+ .sketch-btn:active {
47
+ transform: translate(2px, 2px);
48
+ box-shadow: 2px 2px 0px 0px rgba(0,0,0,1);
49
+ }
50
+ @keyframes scribble {
51
+ 0% { transform: translate(0,0); }
52
+ 25% { transform: translate(1px, -1px); }
53
+ 50% { transform: translate(-1px, 1px); }
54
+ 75% { transform: translate(1px, 1px); }
55
+ 100% { transform: translate(0,0); }
56
+ }
57
+ .scribble-hover:hover {
58
+ animation: scribble 0.2s infinite;
59
+ }
60
+ </style>
61
+
62
+ <link rel="stylesheet" href="/index.css">
63
+ <script type="importmap">
64
+ {
65
+ "imports": {
66
+ "react/": "https://esm.sh/react@^19.2.3/",
67
+ "react": "https://esm.sh/react@^19.2.3",
68
+ "react-dom/": "https://esm.sh/react-dom@^19.2.3/",
69
+ "recharts": "https://esm.sh/recharts@^3.7.0",
70
+ "@google/genai": "https://esm.sh/@google/genai@^1.38.0"
71
+ }
72
+ }
73
+ </script>
74
+ <script type="module" crossorigin src="/assets/index-DZrkvv0n.js"></script>
75
+ </head>
76
+ <body>
77
+ <div id="root"></div>
78
+ </body>
79
  </html>