-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (86 loc) · 3.17 KB
/
Copy pathindex.html
File metadata and controls
86 lines (86 loc) · 3.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SciNavi AI</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.8/dist/katex.min.css" integrity="sha384-GvrOXuhMATgEsSwCs4smul74iXGOixntILdUW9XmUC6+HX0sLNAK3q71HotJqlAn" crossorigin="anonymous">
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
sans: [
"Inter",
"-apple-system",
"BlinkMacSystemFont",
"Segoe UI",
"PingFang SC",
"Hiragino Sans GB",
"Microsoft YaHei",
"Helvetica Neue",
"Helvetica",
"Arial",
"sans-serif"
],
},
colors: {
zinc: {
50: '#fafafa',
100: '#f4f4f5',
200: '#e4e4e7',
300: '#d4d4d8',
400: '#a1a1aa',
500: '#71717a',
600: '#52525b',
700: '#3f3f46',
800: '#27272a',
900: '#18181b',
950: '#09090b',
}
}
}
}
}
</script>
<script type="importmap">
{
"imports": {
"react/": "https://aistudiocdn.com/react@^19.2.1/",
"react": "https://aistudiocdn.com/react@^19.2.1",
"@google/genai": "https://aistudiocdn.com/@google/genai@^1.31.0",
"react-dom/": "https://aistudiocdn.com/react-dom@^19.2.1/",
"recharts": "https://aistudiocdn.com/recharts@^3.5.1",
"react-markdown": "https://aistudiocdn.com/react-markdown@^10.1.0",
"lucide-react": "https://aistudiocdn.com/lucide-react@^0.556.0",
"rehype-katex": "https://aistudiocdn.com/rehype-katex@^7.0.1",
"remark-math": "https://aistudiocdn.com/remark-math@^6.0.0"
}
}
</script>
<style>
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #d4d4d8; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #a1a1aa; }
body { background-color: #ffffff; color: #18181b; }
@media print {
body { -webkit-print-color-adjust: exact; print-color-adjust: exact; background-color: white !important; }
@page { margin: 1cm; size: auto; }
nav, .no-print, button, .print\:hidden { display: none !important; }
.print\:block { display: block !important; }
.min-h-screen { min-height: 0 !important; }
.max-w-7xl, .max-w-4xl, .max-w-2xl { max-width: none !important; width: 100% !important; margin: 0 !important; padding: 0 !important; }
.shadow-lg, .shadow-xl, .shadow-2xl, .shadow-sm { box-shadow: none !important; border: 1px solid #e4e4e7 !important; }
.rounded-3xl, .rounded-xl, .rounded-2xl { border-radius: 8px !important; }
.bg-white, .prose { break-inside: avoid; }
}
</style>
<link rel="stylesheet" href="/index.css">
</head>
<body>
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>