-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
127 lines (127 loc) · 4.9 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,400;6..12,700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles.css" />
<title>Commune</title>
</head>
<body class="p-1.6">
<div class="bg-blue-50 px-1.6 md:px-6.4 lg:px-1.6 py-3.2 rounded-md">
<div class="mx-auto max-w-6xl">
<header class="flex justify-between">
<img src="imgs/logo.svg" alt="logo" />
<nav
class="hidden menu absolute top-[0px] left-[0px] w-full h-screen bg-white flex-col items-center justify-center lg:static lg:w-auto lg:h-auto lg:flex lg:bg-transparent lg:flex-row"
>
<ul class="flex flex-col gap-1.6 items-center lg:flex-row">
<li>
<a
class="hover:opacity-60 transition-opacity duration-300"
href="#"
>Features</a
>
</li>
<li>
<a
class="hover:opacity-60 transition-opacity duration-300"
href="#"
>Affiliates</a
>
</li>
<li>
<a
class="hover:opacity-60 transition-opacity duration-300"
href="#"
>Pricing</a
>
</li>
<li>
<a
class="hover:opacity-60 transition-opacity duration-300"
href="#"
>Communities</a
>
</li>
</ul>
<button
class="bg-violet-950 hover:bg-violet-900 transition-colors duration-300 text-violet-100 font-bold px-2.4 py-1.6 rounded-md mt-3.2 lg:mt-[0px] lg:ml-1.6"
>
Join Waitlist
</button>
</nav>
<img
class="hamburger cursor-pointer z-[10] lg:hidden"
src="imgs/hamburger.svg"
alt="hamburger menu icon"
/>
</header>
<div
class="grid grid-cols-1 lg:grid-cols-[1.5fr_1fr] lg:gap-2.4 pt-4.8 pb-2.4"
>
<div class="lg:self-center">
<p
class="bg-violet-950 text-violet-200 rounded-full text-center py-0.4 md:w-[80%] md:mx-auto lg:mx-[0px]"
>
We are now allowing early-access for users.
<a class="underline font-bold" href="#">Learn more.</a>
</p>
<h1
class="text-3.6 md:text-4.4 text-violet-950 text-center lg:text-left leading-[1.4] font-bold mt-2.4"
>
Build a highly engaged community with no effort
</h1>
<p
class="text-center lg:text-left md:w-[80%] lg:w-auto md:mx-auto lg:mx-[0px]"
>
Commune offers the tools you need to build a highly engaged
community with little to no effort. Simply setup your Commune
workspace, and manage everything from members to content from one
central dashboard.
</p>
<form
class="flex flex-col md:flex-row md:w-[80%] md:mx-auto lg:mx-[0px] gap-1.2 mt-1.6"
>
<input
class="p-1.6 rounded-md border border-slate-300 focus:border-violet-950 focus:outline-none placeholder:text-slate-300 md:flex-1"
type="email"
name="email"
id="email"
placeholder="Enter your e-mail address"
/>
<button
class="bg-violet-950 hover:bg-violet-900 transition-colors duration-300 text-violet-100 font-bold py-1.6 md:px-2.4 rounded-md"
>
Join Waitlist
</button>
</form>
</div>
<img
class="hidden lg:block lg:self-center lg:w-[80%]"
src="imgs/illustration.png"
alt="illustration"
/>
</div>
<div class="flex flex-col gap-1.2">
<p class="font-bold">Used by these companies:</p>
<div class="flex flex-wrap gap-1.2">
<img src="imgs/atlassian.svg" alt="atlassian icon" />
<img src="imgs/behance.svg" alt="behance icon" />
<img src="imgs/bing.svg" alt="bing icon" />
<img src="imgs/bitbucket.svg" alt="bitbucket icon" />
<img src="imgs/dropbox.svg" alt="dropbox icon" />
<img src="imgs/twitch.svg" alt="twitch icon" />
<img src="imgs/twitter.svg" alt="twitter icon" />
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>