-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
27 lines (25 loc) · 957 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" sizes="32x32" href="public/logo.png" />
<link href="/public/style.css" rel="stylesheet" />
<title>Cliuno Express Template</title>
</head>
<body class="bg-blue-950">
<header
class="flex flex-col items-center justify-center h-screen mb-12 bg-fixed bg-center bg-cover custom-img"
>
<img src="public/logo.png" alt="Logo" class="mb-12" />
<div class="p-5 text-2xl text-white bg-blue-500 bg-opacity-50 rounded-xl">
Welcome to CLIuno
</div>
</header>
<section
class="container flex items-center justify-center h-screen m-auto mb-12 bg-fixed bg-center bg-cover custom-img"
>
<div class="p-5 text-2xl text-white bg-purple-500 bg-opacity-50 rounded-xl">Thank you!</div>
</section>
</body>
</html>