Files
lifeforge/client/index.html
Melvin Chia 8840d68421 feat: complete migration of frontend
Former-commit-id: eeeb8b65ec4d457c6db99b1406e574f852b9d3b8 [formerly 594abd49c3e7537921a13f4b39357c2d7ae91cf2] [formerly 17809b5d1c8c1f8d7cb6931221f5f31df6c2596e [formerly ec98c02b6ae72a43d83f916e1584c373880d81eb]]
Former-commit-id: a60eceecd701596fcdda6c68fbb62c73522b12bb [formerly d57ba2d8f14e6822714163e7ef18f2464c3fe5c8]
Former-commit-id: be4e3099630e25d4eea5dd3b6aaa95426e0181da
2025-10-04 13:07:01 +08:00

51 lines
1.4 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-lg font-medium text-white">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>