Files
lifeforge/client/index.html

50 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 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-[100vh] w-full">
<div
class="preloader flex-center absolute top-0 left-0 h-[100vh] w-full flex-col gap-[1rem] 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-[100vh] w-full bg-white text-black"
id="root"
></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>