Files
lifeforge/client/index.html
Melvin Chia ea7851064f refactor(client): reorganize component hierarchy and updated styling for better dark mode
Former-commit-id: eaf63317fc1b2fa35006fef121d190113d4849c2 [formerly 7df8092bd827de667e2a229326da3a4766b37c56] [formerly 811e9cdc88886ff0f8bfc3a9a7241f47d34afe74 [formerly 3346c5f897772d8148cf348051ca69c3378d137c]]
Former-commit-id: f5248b20aaf43f32e63156c90f8cb91bf292870d [formerly ff29ab218a9813eabc1f2106c509b4a30bf0b6f3]
Former-commit-id: 6664a62231aee781396d10f73e2e898d0342f94b
2025-08-26 01:00:08 +08:00

40 lines
1.3 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="manifest" href="/manifest.json" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" />
<meta http-equiv="ScreenOrientation" content="autoRotate:disabled" />
<meta name="title" content="Lifeforge." />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="apple-touch-startup-image" href="/assets/icons/icon-512x512.png" sizes="512x512" />
<style>
.preloader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: black;
color: white;
font-family: 'Inter', sans-serif;
}
</style>
</head>
<body class="h-dvh w-full">
<div class="preloader flex-center absolute top-0 left-0 h-dvh w-full flex-col gap-6 bg-black! text-black!">
<span class="loader text-white!"></span>
<p class="text-white text-lg font-medium">Forging things together...</p>
</div>
<div class="dark:bg-bg-950 h-dvh w-full bg-white text-black" id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>