forked from imbytecat/fullstack-starter
19 lines
876 B
HTML
19 lines
876 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Furtherverse</title>
|
|
<link rel="stylesheet" href="./styles.css" />
|
|
</head>
|
|
<body class="bg-white h-screen w-screen flex flex-col items-center justify-center overflow-hidden select-none cursor-default font-sans antialiased m-0">
|
|
<div class="flex flex-col items-center gap-8 animate-fade-in">
|
|
<h1 class="text-3xl font-medium tracking-tight text-zinc-900">Furtherverse</h1>
|
|
<div class="w-24 h-[2px] bg-zinc-100 rounded-full overflow-hidden relative">
|
|
<div class="h-full w-full bg-zinc-800 origin-left animate-loading-bar"></div>
|
|
</div>
|
|
<div class="text-[10px] uppercase tracking-widest text-zinc-400 font-medium animate-pulse-slow">Starting</div>
|
|
</div>
|
|
</body>
|
|
</html>
|