-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (59 loc) · 1.92 KB
/
Copy pathindex.html
File metadata and controls
60 lines (59 loc) · 1.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-g" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cloud & AI Cost Optimizer</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
colors: {
background: '#0D1117',
surface: '#161B22',
border: '#30363D',
'text-primary': '#C9D1D9',
'text-secondary': '#8B949E',
primary: '#58A6FF',
'primary-hover': '#388BFD',
green: '#3FB950',
red: '#F85149',
purple: '#A371F7',
yellow: '#E3B341',
// For compatibility
'gray-900': '#0D1117',
'gray-800': '#161B22',
'gray-700': '#30363D',
'gray-600': '#485461',
'gray-500': '#6E7681',
'gray-400': '#8B949E',
'gray-300': '#C9D1D9',
},
},
},
}
</script>
<script type="importmap">
{
"imports": {
"react/": "https://aistudiocdn.com/react@^19.1.1/",
"react": "https://aistudiocdn.com/react@^19.1.1",
"react-dom/": "https://aistudiocdn.com/react-dom@^19.1.1/",
"@google/genai": "https://aistudiocdn.com/@google/genai@^1.21.0",
"recharts": "https://aistudiocdn.com/recharts@^3.2.1"
}
}
</script>
</head>
<body class="bg-background text-text-primary font-sans">
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>