timetracker/frontend/index.html

18 lines
637 B
HTML
Raw Permalink Normal View History

2023-01-25 10:44:04 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
2023-01-25 11:47:39 +00:00
<meta name="description" content="Self-hosted time-tracker."/>
<meta name="keywords" content="time, tracking, video games, self-hosted"/>
2023-01-25 10:44:04 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2023-01-25 11:47:39 +00:00
<!-- TODO: replace with own icon -->
<!-- <link rel="icon" type="image/svg+xml" href="/vite.svg" /> -->
<link rel="stylesheet" href="https://rsms.me/inter/inter.css"/>
<title>Timetracker</title>
2023-01-25 10:44:04 +00:00
</head>
2023-01-25 11:47:39 +00:00
<body class="dark">
2023-01-25 10:44:04 +00:00
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>