mirror of
https://github.com/Lifeforge-app/lifeforge.git
synced 2026-07-01 08:16:35 +00:00
Former-commit-id: 189a6ae16a8622e21d4cf1c17939a4358ec2da8a [formerly 5a0d7e9a9979fceba31d11c7b1895810e8e90967] [formerly e87cc3ba5570e546e45734d3a5c23ceadb4c16ba [formerly 012fd3257e85aa15b40c38925d2e7e0fac8fa909]] Former-commit-id: 5ebd3fe059fb43c6715498e93dbff05e678d40ba [formerly 9262e3ed71c30e2e391ecb039fb5674078da124d] Former-commit-id: ca2001a316e49ba15250482334242493475d1915
40 lines
1.3 KiB
HTML
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: white;
|
|
color: black;
|
|
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-white! text-black!">
|
|
<span class="loader text-black!"></span>
|
|
<p class="text-bg-500 text-lg font-medium">Getting things ready..</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> |