-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (36 loc) · 1.38 KB
/
index.html
File metadata and controls
45 lines (36 loc) · 1.38 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" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>StartPanel - A Personal Dashboard</title>
<link rel="icon" href="./assets/favicon-Bvvdow7Y.ico" />
<meta
name="description"
content="StartPanel is a customizable personal dashboard built with React."
/>
<!-- SEO: allow indexing -->
<meta name="robots" content="index, follow" />
<!-- Tailwind (development / CDN mode – OK for now) -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- React via importmap (unchanged, important!) -->
<link rel="stylesheet" href="/index.css">
<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/",
"socket.io-client": "https://esm.sh/socket.io-client@2.5.0"
}
}
</script>
<script type="module" crossorigin src="./assets/index-DytlcDdQ.js"></script>
<link rel="manifest" href="./manifest.webmanifest"></head>
<body class="bg-slate-900 text-slate-100 font-sans antialiased">
<div id="root"></div>
<!-- External APIs -->
<script src="https://apis.google.com/js/api.js"></script>
<!-- App entry (unchanged) -->
</body>
</html>