mirror of
https://github.com/dsprenkels/backpack.git
synced 2026-01-12 05:17:57 -05:00
21 lines
666 B
HTML
21 lines
666 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link rel="icon" href="/assets/backpack.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="theme-color" content="#000000" />
|
|
<meta
|
|
name="description"
|
|
content="Dusk's personal packing list generator"
|
|
/>
|
|
<link rel="manifest" href="/manifest.json" />
|
|
<title>Backpack</title>
|
|
</head>
|
|
<body class="bg-white dark:bg-zinc-900 dark:text-zinc-200">
|
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
<div id="root"></div>
|
|
<script type="module" src="./main.tsx"></script>
|
|
</body>
|
|
</html>
|