Cosmos-Server/client/index.html

21 lines
518 B
HTML
Raw Normal View History

2023-03-12 18:17:28 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cosmos</title>
2023-03-25 20:15:00 +00:00
<link rel="icon" type="image/x-icon" href="/src/assets/images/icons/cosmos.png">
2023-03-13 00:49:27 +00:00
<style>
@media (prefers-color-scheme: dark) {
html {
background-color: #141414;
}
}
</style>
2023-03-12 18:17:28 +00:00
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/index.jsx"></script>
</body>
</html>