-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
426 lines (425 loc) · 15 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
<!DOCTYPE html>
<html
lang="en"
class="scroll-smooth dark"
>
<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"
/>
<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=Open+Sans:wght@400;700&family=Raleway:ital,wght@0,400;0,700;1,400&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="css/style.css"
/>
<link
rel="icon"
type="image/x-icon"
href="/images/favicon-32x32.png"
/>
<script
src="js/script.js"
defer
></script>
<title>Fylo Website</title>
</head>
<body class="dark:bg-darkBlue dark:text-white font-opensans">
<!-- header -->
<header class="container h-40 px-6 mx-auto mt-10 text-center md:h-20">
<!-- dynamic logo -->
<div
class="w-48 h-20 mx-auto bg-no-repeat bg-logo-light-mode dark:bg-logo-dark-mode md:mx-0 md:absolute top-10 left-10"
></div>
<!-- menu -->
<div
class="flex items-center justify-center space-x-4 md:space-x-10 md:absolute top-12 right-10"
>
<a
href="#features"
class="hover:text-accentCyan"
>Features</a
>
<a
href="#testimonials"
class="hover:text-accentCyan"
>Testimonials</a
>
<!-- dark/light mode button -->
<button
id="theme-toggle"
class="p-2.5 text-sm text-gray-500 rounded-lg dark:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-700 focus:outline-none focus:ring-4 focus:ring-gray-200 dark:focus:ring-gray-700"
>
<!-- Dark SVG Icon -->
<svg
id="theme-toggle-dark-icon"
class="hidden w-5 h-5"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M17.293 13.293A8 8 0 016.707 2.707a8.001 8.001 0 1010.586 10.586z"></path>
</svg>
<!-- Light SVG Icon -->
<svg
id="theme-toggle-light-icon"
class="hidden w-5 h-5"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M10 2a1 1 0 011 1v1a1 1 0 11-2 0V3a1 1 0 011-1zm4 8a4 4 0 11-8 0 4 4 0 018 0zm-.464 4.95l.707.707a1 1 0 001.414-1.414l-.707-.707a1 1 0 00-1.414 1.414zm2.12-10.607a1 1 0 010 1.414l-.706.707a1 1 0 11-1.414-1.414l.707-.707a1 1 0 011.414 0zM17 11a1 1 0 100-2h-1a1 1 0 100 2h1zm-7 4a1 1 0 011 1v1a1 1 0 11-2 0v-1a1 1 0 011-1zM5.05 6.464A1 1 0 106.465 5.05l-.708-.707a1 1 0 00-1.414 1.414l.707.707zm1.414 8.486l-.707.707a1 1 0 01-1.414-1.414l.707-.707a1 1 0 011.414 1.414zM4 11a1 1 0 100-2H3a1 1 0 000 2h1z"
fill-rule="evenodd"
clip-rule="evenodd"
></path>
</svg>
</button>
</div>
</header>
<!-- hero section -->
<section
id="hero"
class="bg-bottom bg-no-repeat bg-contain bg-curvy-light-mode dark:bg-curvy-dark-mode"
>
<!-- hero container -->
<div class="container px-6 mx-auto text-center md:pt-20 pb-52">
<img
src="images/illustration-intro.png"
alt="intro"
class="mx-auto"
/>
<h1 class="max-w-2xl mx-auto mb-10 text-3xl font-bold leading-normal mt-14 md:text-4xl">
All your files in one secure location, accessible anywhere.
</h1>
<p class="max-w-sm mx-auto mb-10 text-sm md:max-w-xl md:text-lg">
Fylo stores all your most important files in one secure location. Access them wherever you
need, share and collaborate with friends, family and co-workers.
</p>
<button class="p-3 rounded-full w-52 bg-accentCyan hover:scale-95">Get Started</button>
</div>
</section>
<!-- features section -->
<section
id="features"
class="pt-12 bg-gray-50 dark:bg-darkBlue"
>
<!-- features container -->
<div class="container px-6 pb-32 mx-auto">
<!-- first row -->
<div class="flex flex-col space-y-24 text-center md:flex-row md:space-y-0">
<!-- item 1 -->
<div class="flex flex-col items-center space-y-2 md:w-1/2">
<div class="flex items-center justify-center h-24 mb-6">
<img
src="images/icon-access-anywhere.svg"
alt="access anywhere"
/>
</div>
<h3 class="text-xl font-bold">Access your file from anywhere</h3>
<p class="max-w-md">
The ability to use a smartphone, tablet or computer to access your account means your
files follow you everywhere.
</p>
</div>
<!-- item 2 -->
<div class="flex flex-col items-center space-y-2 md:w-1/2">
<div class="flex items-center justify-center h-24 mb-6">
<img
src="images/icon-security.svg"
alt="access anywhere"
/>
</div>
<h3 class="text-xl font-bold">Security you can trust</h3>
<p class="max-w-md">
2-factor authentication and user-controlled encryption are just a couple of the
security features we allow to help secure your files.
</p>
</div>
</div>
<!-- second row -->
<div class="flex flex-col space-y-24 text-center mt-28 md:flex-row md:space-y-0">
<!-- item 3 -->
<div class="flex flex-col items-center space-y-2 md:w-1/2">
<div class="flex items-center justify-center h-24 mb-6">
<img
src="images/icon-collaboration.svg"
alt="access anywhere"
/>
</div>
<h3 class="text-xl font-bold">Access your file from anywhere</h3>
<p class="max-w-md">
The ability to use a smartphone, tablet or computer to access your account means your
files follow you everywhere.
</p>
</div>
<!-- item 4 -->
<div class="flex flex-col items-center space-y-2 md:w-1/2">
<div class="flex items-center justify-center h-24 mb-6">
<img
src="images/icon-any-file.svg"
alt="access anywhere"
/>
</div>
<h3 class="text-xl font-bold">Security you can trust</h3>
<p class="max-w-md">
2-factor authentication and user-controlled encryption are just a couple of the
security features we allow to help secure your files.
</p>
</div>
</div>
</div>
</section>
<!-- productive section -->
<section
id="productive"
class="bg-white dark:bg-darkBlue"
>
<!-- productive container -->
<div
class="container flex flex-col items-center px-6 pt-24 pb-32 mx-auto md:flex-row md:space-x-16"
>
<!-- image -->
<div class="md:w-1/2">
<img
src="images/illustration-stay-productive.png"
alt="stay productive"
class="mb-10"
/>
</div>
<!-- content -->
<div class="flex flex-col items-start md:w-1/2">
<div class="flex flex-col space-y-5">
<h4 class="max-w-md text-xl font-bold md:text-4xl">
Stay productive, wherever you are
</h4>
<p class="text-md md:text-lg">
Never let location be an issue when accessing your files. Fylo has you covered for all
of your file storage needs.
</p>
<p class="text-md md:text-lg">
Securely share files and folders with friends, family and colleagues for live
collaboration. No email attachments required.
</p>
</div>
<!-- link -->
<div class="block mt-4">
<a
href="#"
class="border-b border-accentCyan text-accentCyan"
>See how Flyo works
<img
src="images/icon-arrow.svg"
alt="arrow"
class="inline pb-2"
/>
</a>
</div>
</div>
</div>
</section>
<!-- testimonials section -->
<section
id="testimonials"
class="bg-gray-50 dark:bg-darkBlue"
>
<!-- testimonials container -->
<div class="container px-6 pt-12 mx-auto pb-80 md:pb-96">
<!-- boxes container -->
<div class="relative flex flex-col w-full space-y-6 md:flex-row md:space-y-0 md:space-x-12">
<!-- quotes image -->
<img
src="images/bg-quotes.png"
alt="quotes"
class="absolute w-10 left-1 -top-2 md:-top-16 md:w-20"
/>
<!-- box 1 -->
<div
class="flex flex-col p-10 space-y-6 bg-gray-100 rounded-lg dark:bg-darkBlue3 md:w-1/3"
>
<p class="text-sm leading-5 md:text-lg">
Flyo has improved our team productivity by an order of magnitude. Since making the
switch our team has become a well-oiled collaboration machine.
</p>
<!-- customer info -->
<div class="flex space-x-4">
<img
src="images/profile-1.jpg"
alt=""
class="w-10 h-10 rounded-full"
/>
<div>
<h5 class="text-sm font-semibold">Satish Patel</h5>
<p class="text-xs font-extralight">Founder & CEO. Huddle</p>
</div>
</div>
</div>
<!-- box 2 -->
<div
class="flex flex-col p-10 space-y-6 bg-gray-100 rounded-lg dark:bg-darkBlue3 md:w-1/3"
>
<p class="text-sm leading-5 md:text-lg">
Flyo has improved our team productivity by an order of magnitude. Since making the
switch our team has become a well-oiled collaboration machine.
</p>
<!-- customer info -->
<div class="flex space-x-4">
<img
src="images/profile-2.jpg"
alt=""
class="w-10 h-10 rounded-full"
/>
<div>
<h5 class="text-sm font-semibold">Bruce McKenzie</h5>
<p class="text-xs font-extralight">Co-Founder & CTO. Huddle</p>
</div>
</div>
</div>
<!-- box 3 -->
<div
class="flex flex-col p-10 space-y-6 bg-gray-100 rounded-lg dark:bg-darkBlue3 md:w-1/3"
>
<p class="text-sm leading-5 md:text-lg">
Flyo has improved our team productivity by an order of magnitude. Since making the
switch our team has become a well-oiled collaboration machine.
</p>
<!-- customer info -->
<div class="flex space-x-4">
<img
src="images/profile-3.jpg"
alt=""
class="w-10 h-10 rounded-full"
/>
<div>
<h5 class="text-sm font-semibold">Eva Boyd</h5>
<p class="text-xs font-extralight">Co-Founder & CFO. Huddle</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Early Access Section -->
<section
id="early-access"
class="relative px-6 dark:bg-darkBlue2 md:px-0"
>
<div
class="relative max-w-4xl p-10 px-6 mx-auto space-y-6 text-center bg-gray-200 rounded-lg -top-40 dark:bg-darkBlue1 md:px-16"
>
<h5 class="text-2xl font-bold">Get early access today</h5>
<p class="text-sm">
It only takes a minute to sign up and our free starter tier is extremely generous. If you
have any questions, our support team would be happy to help you.
</p>
<!-- Input & Button Container -->
<div class="flex flex-col items-start space-y-6 md:flex-row md:space-y-0 md:space-x-6">
<div class="w-full md:flex-1">
<input
type="text"
class="w-full px-10 py-3 rounded-full focus:outline-none"
placeholder="[email protected]"
/>
</div>
<button class="w-full p-3 px-6 rounded-full bg-accentCyan md:w-56 hover:scale-95">
Get Started For Free
</button>
</div>
</div>
</section>
<!-- footer -->
<footer class="text-white bg-darkBlue2">
<div class="container px-5 pt-12 pb-10 mx-auto">
<!-- flex container for all items -->
<div class="flex flex-col justify-between space-y-24 md:flex-row md:space-y-0">
<!-- email & phone -->
<div class="mt-10 space-y-6">
<div class="flex items-center space-x-3 md:-mt-10">
<div class="w-6">
<img
src="images/icon-phone.svg"
alt="phone icon"
class="scale-10"
/>
</div>
<div>+1-543-123-4567</div>
</div>
<div class="flex items-center space-x-3">
<div class="w-6">
<img
src="images/icon-email.svg"
alt="email icon"
class="scale-10"
/>
</div>
<div>[email protected]</div>
</div>
</div>
<!-- menus -->
<div
class="flex flex-col space-y-10 text-xl md:text-base md:space-x-20 md:space-y-0 md:flex-row"
>
<div class="flex flex-col space-y-3">
<a href="#">About</a>
<a href="#">Jobs</a>
<a href="#">Press</a>
<a href="#">Blog</a>
</div>
<div class="flex flex-col space-y-3">
<a href="#">Contact Us</a>
<a href="#">Terms</a>
<a href="#">Privacy</a>
</div>
</div>
<!-- social -->
<div class="flex justify-center pb-10 space-x-3">
<div>
<a href="#">
<img
src="images/facebook.svg"
alt="link to facebook"
class="p-2 rounded-full bg-darkBlue ficon"
/>
</a>
</div>
<div>
<a href="#">
<img
src="images/twitter.svg"
alt="link to twitter"
class="p-2 rounded-full bg-darkBlue ficon"
/>
</a>
</div>
<div>
<a href="#">
<img
src="images/instagram.svg"
alt="link to instagram"
class="p-2 rounded-full bg-darkBlue ficon"
/>
</a>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>