2023-08-03 06:20:54 +00:00
|
|
|
<!doctype html>
|
2023-07-13 11:09:45 +00:00
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
2024-01-24 06:00:56 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
|
2024-01-24 06:02:11 +00:00
|
|
|
<title>Nimbus GUI</title>
|
2023-09-11 20:20:57 +00:00
|
|
|
<link
|
2024-01-24 06:00:56 +00:00
|
|
|
rel="preload"
|
|
|
|
href="./Inter-font/Inter-Regular.ttf"
|
|
|
|
as="font"
|
|
|
|
type="font/ttf"
|
|
|
|
crossorigin=""
|
|
|
|
/>
|
|
|
|
<link
|
|
|
|
rel="preload"
|
|
|
|
href="./Inter-font/Inter-Bold.ttf"
|
|
|
|
as="font"
|
|
|
|
type="font/ttf"
|
|
|
|
crossorigin=""
|
|
|
|
/>
|
2023-07-13 11:09:45 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2024-01-24 06:00:56 +00:00
|
|
|
<script>
|
|
|
|
window.global = window
|
|
|
|
</script>
|
2023-07-13 11:09:45 +00:00
|
|
|
<div id="root"></div>
|
2023-08-03 06:20:54 +00:00
|
|
|
<script type="module" src="/src/main.tsx"></script>
|
2023-07-13 11:09:45 +00:00
|
|
|
</body>
|
|
|
|
</html>
|