admin08077 commited on
Commit
84e8c0c
·
verified ·
1 Parent(s): 5def24e

Upload index.html

Browse files
Files changed (1) hide show
  1. index.html +71 -18
index.html CHANGED
@@ -1,19 +1,72 @@
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>jocall3 Portfolio Explorer</title>
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
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=Inter:wght@300;400;500;600;700&family=Fira+Code:wght@400;500&display=swap" rel="stylesheet">
13
+ <style>
14
+ body {
15
+ font-family: 'Inter', sans-serif;
16
+ background-color: #0f172a;
17
+ }
18
+ pre, code {
19
+ font-family: 'Fira Code', monospace;
20
+ }
21
+ ::-webkit-scrollbar {
22
+ width: 8px;
23
+ height: 8px;
24
+ }
25
+ ::-webkit-scrollbar-track {
26
+ background: #1e293b;
27
+ }
28
+ ::-webkit-scrollbar-thumb {
29
+ background: #475569;
30
+ border-radius: 4px;
31
+ }
32
+ ::-webkit-scrollbar-thumb:hover {
33
+ background: #64748b;
34
+ }
35
+ .mermaid {
36
+ background: rgba(30, 41, 59, 0.5);
37
+ padding: 1rem;
38
+ border-radius: 0.75rem;
39
+ margin: 1rem 0;
40
+ display: flex;
41
+ justify-content: center;
42
+ }
43
+ /* Markdown Overrides */
44
+ .prose h1, .prose h2, .prose h3 { color: #818cf8; font-weight: 800; margin-top: 1.5em; }
45
+ .prose code { background: #1e293b; color: #f472b6; padding: 0.2rem 0.4rem; border-radius: 0.25rem; }
46
+ .prose pre code { background: transparent; padding: 0; }
47
+ .prose blockquote { border-left-color: #6366f1; font-style: italic; color: #94a3b8; }
48
+ </style>
49
+
50
+ <link rel="stylesheet" href="/index.css">
51
+ <script type="importmap">
52
+ {
53
+ "imports": {
54
+ "@google/genai": "https://esm.sh/@google/genai@^1.34.0",
55
+ "react-dom/": "https://esm.sh/react-dom@^19.2.3/",
56
+ "react/": "https://esm.sh/react@^19.2.3/",
57
+ "react": "https://esm.sh/react@^19.2.3",
58
+ "react-markdown": "https://esm.sh/react-markdown@^9.0.1",
59
+ "remark-gfm": "https://esm.sh/remark-gfm@^4.0.0",
60
+ "mermaid": "https://esm.sh/mermaid@^11.4.0",
61
+ "react-syntax-highlighter": "https://esm.sh/react-syntax-highlighter@^15.5.0",
62
+ "react-syntax-highlighter/dist/esm/styles/prism": "https://esm.sh/react-syntax-highlighter@^15.5.0/dist/esm/styles/prism",
63
+ "react-syntax-highlighter/": "https://esm.sh/react-syntax-highlighter@^16.1.0/"
64
+ }
65
+ }
66
+ </script>
67
+ <script type="module" crossorigin src="/assets/index-BT-0w1mM.js"></script>
68
+ </head>
69
+ <body class="text-slate-200 antialiased overflow-hidden">
70
+ <div id="root"></div>
71
+ </body>
72
  </html>