-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (19 loc) · 777 Bytes
/
Copy pathindex.html
File metadata and controls
20 lines (19 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!doctype html>
<!-- Lowkey the entry point for the whole web app. No cap. -->
<html lang="en">
<head>
<!-- Metadata stuff. Important for SEO and vibes. -->
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<!-- Make sure it looks good on phones. Mobile first, fr. -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="CrowdControl" />
<title>StampedePredictor — Crowd Risk Simulation</title>
</head>
<body>
<!-- This is where React does its thing. The root of all goodness. -->
<div id="root"></div>
<!-- Booting up the main script. Let's gooooo! -->
<script type="module" src="/src/frontend/main.tsx"></script>
</body>
</html>