-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (53 loc) · 1.84 KB
/
index.html
File metadata and controls
53 lines (53 loc) · 1.84 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
<!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>EduCare - 為博幼基金會打造的 AI 教學助理</title>
<meta
name="description"
content="EduCare 是一個專為博幼基金會設計的客製化 AI 教學助理平台,旨在為偏鄉弱勢兒童提供個人化的學習支援與課後輔導。"
/>
<meta
name="keywords"
content="AI教學助理, 博幼基金會, 個人化學習, 弱勢教育, EduCare, 課後輔導"
/>
<meta name="author" content="博幼基金會" />
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
'gray-900': '#121212',
'gray-800': '#1e1e1e',
'gray-700': '#2d2d2d',
'gray-600': '#3c3c3c',
'gray-400': '#a0a0a0',
'cyan-500': '#06b6d4',
'cyan-600': '#0891b2',
},
},
},
};
</script>
<script type="importmap">
{
"imports": {
"@google/genai": "https://aistudiocdn.com/@google/genai@^1.17.0",
"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/",
"idb": "https://aistudiocdn.com/idb@^8.0.3",
"@huggingface/transformers": "https://cdn.jsdelivr.net/npm/@huggingface/transformers@2.17.1"
}
}
</script>
<link rel="stylesheet" href="/index.css" />
</head>
<body class="bg-gray-900 text-gray-200">
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>