-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (45 loc) · 1.4 KB
/
index.html
File metadata and controls
45 lines (45 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Expert Day-Trading Bot Dashboard</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
"brand-bg": "#10111A",
"brand-surface": "#1C1D2A",
"brand-surface-2": "#2A2C3F",
"brand-text": "#E4E4FB",
"brand-text-secondary": "#A3A3C2",
"brand-accent": "#6A67FF",
"brand-accent-hover": "#5855d6",
"brand-success": "#059669",
"brand-danger": "#DC2626",
"brand-warning": "#F59E0B",
},
},
},
};
</script>
<script type="importmap">
{
"imports": {
"react": "https://esm.sh/react@18.2.0",
"react/": "https://esm.sh/react@18.2.0/",
"react-dom/client": "https://esm.sh/react-dom@18.2.0/client",
"react-dom": "https://esm.sh/react-dom@18.2.0",
"recharts": "https://esm.sh/recharts@2.5.0"
}
}
</script>
</head>
<body class="bg-brand-bg text-brand-text">
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>