-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (66 loc) · 2.14 KB
/
index.html
File metadata and controls
66 lines (66 loc) · 2.14 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
61
62
63
64
65
66
<!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>Transparence | Immutable Evidence Map</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link href="https://unpkg.com/maplibre-gl@4.0.0/dist/maplibre-gl.css" rel="stylesheet" />
<style>
body {
font-family: 'Space Grotesk', sans-serif;
background-color: #0A0F14;
color: white;
overflow: hidden;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: #0A0F14;
}
::-webkit-scrollbar-thumb {
background: #1f2937;
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: #00D4FF;
}
.maplibregl-popup-content {
background: #0A0F14;
border: 1px solid #00D4FF;
color: white;
border-radius: 8px;
padding: 10px;
}
.maplibregl-popup-tip {
border-top-color: #00D4FF;
}
</style>
<script type="importmap">
{
"imports": {
"react/": "https://aistudiocdn.com/react@^19.2.0/",
"react": "https://aistudiocdn.com/react@^19.2.0",
"leaflet": "https://aistudiocdn.com/leaflet@^1.9.4",
"react-leaflet": "https://aistudiocdn.com/react-leaflet@^5.0.0",
"maplibre-gl": "https://esm.sh/maplibre-gl@4.0.0",
"@turf/turf": "https://esm.sh/@turf/turf@6.5.0",
"@google/genai": "https://aistudiocdn.com/@google/genai@^1.30.0",
"clsx": "https://aistudiocdn.com/clsx@^2.1.1",
"tailwind-merge": "https://aistudiocdn.com/tailwind-merge@^3.4.0",
"react-dom/": "https://aistudiocdn.com/react-dom@^19.2.0/",
"lucide-react": "https://aistudiocdn.com/lucide-react@^0.555.0"
}
}
</script>
<link rel="stylesheet" href="/index.css">
</head>
<body>
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>