-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (43 loc) · 1.37 KB
/
index.html
File metadata and controls
43 lines (43 loc) · 1.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🎓</text></svg>">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SmartLearn - School Management System</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
'primary': '#4f46e5',
'secondary': '#10b981',
'background': '#f8fafc',
'sidebar': '#1f2937',
'sidebar-hover': '#374151',
'text-main': '#111827',
'text-light': '#6b7280',
}
}
}
}
</script>
<script type="importmap">
{
"imports": {
"react/": "https://aistudiocdn.com/react@^19.2.0/",
"react": "https://aistudiocdn.com/react@^19.2.0",
"react-dom/": "https://aistudiocdn.com/react-dom@^19.2.0/",
"recharts": "https://aistudiocdn.com/recharts@^3.2.1",
"@google/genai": "https://aistudiocdn.com/@google/genai@^1.24.0"
}
}
</script>
<link rel="stylesheet" href="/index.css">
</head>
<body class="bg-background">
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>