-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 1.42 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
25
26
27
28
29
30
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<section class="w-full py-12 ">
<div class="container px-4 md:px-6">
<div class="flex flex-col items-center space-y-4 text-center">
<img src="./assets/logo.jpg" width="200" alt="Pickle Juice"
class="mx-auto max-w-[200px] overflow-hidden rounded-xl object-bottom">
<div class="space-y-2">
<h1 class="text-3xl font-bold tracking-tighter sm:text-4xl md:text-5xl lg:text-6xl/none">Pickle Juice</h1>
<p class="mx-auto max-w-[700px] text-gray-500 md:text-xl dark:text-gray-400">An acidic Go server that serves
up flavor to your Github Pages for personal websites.</p>
</div>
<div class="space-x-4">
<a class="inline-flex h-9 items-center justify-center rounded-md bg-gradient(to-r, from-green-500 to-green-400) px-4 py-2 text-sm font-medium text-gray-50 shadow transition-colors hover:bg-gradient-90 focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-gray-950 disabled:pointer-events-none disabled:opacity-50 dark:bg-gradient-400 dark:text-gray-900 dark:hover:bg-gradient-90 dark:focus-visible:ring-gray-300"
href="https://github.com/ryanmavilia/pickle-juice">Github</a>
</div>
</div>
</div>
</section>
</body>
</html>