-
Notifications
You must be signed in to change notification settings - Fork 45
/
index.html
24 lines (21 loc) · 1.04 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TailwindCSS Boilerplate</title>
</head>
<body class="bg-gradient-to-bl from-purple-400 to-zinc-500 h-screen">
<section class="container mx-auto pt-20">
<h1 class="text-white text-3xl text-center">
<p class="mb-8">Vite + Tailwind CSS + Awesomeness</p>
</h1>
<div class="mx-auto text-center">
<a href='https://github.com/hasinhayder/tailwind-boilerplate' class=" text-white bg-cyan-500 font-semibold border-0 py-2 px-6 focus:outline-none hover:bg-red-600 rounded text-lg">Download</a>
<a target="_blank" href='https://github.com/hasinhayder' class="ml-4 text-gray-700 bg-gray-100 border-0 py-2 px-6 focus:outline-none hover:bg-gray-200 rounded text-lg">Don't Click</a>
</div>
</section>
<script type="module" src="/assets/js/main.js"></script>
</body>
</html>