forked from tailwindlabs/tailwindcss-from-zero-to-production
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (52 loc) · 1.97 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="/css/tailwind.css" />
</head>
<body class="bg-gray-300">
<div class="bg-gray-100 grid lg:grid-cols-2 2xl:grid-cols-5">
<div
class="px-8 py-12 max-w-md mx-auto sm:max-w-xl lg:px-12 lg:py-24 lg:max-w-full xl:mr-0 2xl:col-span-2"
>
<div class="xl:max-w-xl">
<img class="h-10" src="/img/logo.svg" alt="Workcation" />
<img
class="mt-6 rounded-lg shadow-xl sm:mt-8 sm:h-64 sm:w-full sm:object-cover object-center lg:hidden"
src="/img/beach-work.jpg"
alt="Woman workcationing on the beach"
/>
<h1
class="mt-6 text-2xl font-bold text-gray-900 sm:mt-8 sm:text-4xl lg:text-3xl xl:text-4xl"
>
You can work from anywhere.
<br class="hidden lg:inline" />
<span class="text-indigo-500">Take advantage of it.</span>
</h1>
<p class="mt-2 text-gray-600 sm:mt-4 sm:text-xl">
Workcation helps you find work-friendly rentals in beautiful locations so you can enjoy
some nice weather even when you're not on vacation.
</p>
<div class="mt-4 sm:mt-6">
<a
class="inline-block px-5 py-3 rounded-lg bg-indigo-500 uppercase tracking-wider font-semibold text-sm text-white shadow-lg sm:text-base"
href="#"
>
Book your escape
</a>
</div>
</div>
</div>
<div class="hidden relative lg:block 2xl:col-span-3">
<img
class="absolute inset-0 w-full h-full object-cover object-center"
src="/img/beach-work.jpg"
alt="Woman workcationing on the beach"
/>
</div>
</div>
</body>
</html>