mirror of
https://github.com/Adamcake/Bolt.git
synced 2026-04-18 08:16:52 -04:00
14 lines
471 B
HTML
14 lines
471 B
HTML
<!doctype html>
|
|
<html lang="en" class="dark h-screen">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Bolt Launcher</title>
|
|
</head>
|
|
<body
|
|
class="fixed top-0 h-screen w-screen bg-slate-100 text-xs text-slate-900 duration-200 sm:text-sm md:text-base dark:bg-slate-900 dark:text-slate-50">
|
|
<div class="h-full" id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|