-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
388 lines (387 loc) · 14.8 KB
/
index.html
File metadata and controls
388 lines (387 loc) · 14.8 KB
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
<!-- @format -->
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<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" />
<script src="js/script.js" defer></script>
<title>Fylo Website</title>
<!-- Toggle js -->
<script>
if (
localStorage.getItem("color-theme") === "dark" ||
(!("color-theme" in localStorage) &&
window.matchMedia("(prefers-color-scheme: dark)").matches)
) {
document.documentElement.classList.add("dark");
} else {
document.documentElement.classList.remove("dark");
}
</script>
<script src="js/script.js" defer></script>
</head>
<body class="dark:bg-darkBlue dark:text-white font-opensans">
<!-- Header -->
<header class="container mx-auto mt-10 px-6 text-center h-40 md:h-20">
<!-- Dynamic Logo -->
<div
class="bg-logo-light-mode dark:bg-logo-dark-mode bg-no-repeat h-20 w-48 mx-auto 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="text-gray-500 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 rounded-lg text-sm p-2 5"
>
<!-- Dark SVG Icon -->
<svg
id="theme-toggle-dark-icon"
class="w-5 h-5 hidden"
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="w-5 h-5 hidden"
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-curvy-light-mode dark:bg-curvy-dark-mode bg-no-repeat bg-contain bg-bottom"
>
<!-- Hero container -->
<div class="container mx-auto px-6 text-center md:pt-20 pb-52">
<img src="images/illustration-intro.png" alt="" 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, assessible 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 & Productive section -->
<section id="features" class="pt-12 bg-gray-50 dark:bg-darkBlue1">
<!-- features container -->
<div class="container mx-auto px-6 pb-32">
<!-- first row -->
<div
class="flex flex-col space-y-24 text-center md:flex-row md:space-y-0"
>
<!-- Item one -->
<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="" />
</div>
<h3 class="text-xl font-bold">Access your files 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 two -->
<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="" />
</div>
<h3 class="text-xl font-bold">Security you can trust</h3>
<p class="max-w-md">
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="mt-28 flex flex-col space-y-24 text-center md:flex-row md:space-y-0"
>
<!-- Item three -->
<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="" />
</div>
<h3 class="text-xl font-bold">Access your files 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 four -->
<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="" />
</div>
<h3 class="text-xl font-bold">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
</h3>
<p class="max-w-md">
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">
<!-- container -->
<div
class="container flex flex-col items-center mx-auto px-6 pt-24 pb-32 md:flex-row md:space-x-16"
>
<!--Image -->
<div class="md:1/2">
<img
src="images/illustration-stay-productive.png"
class="mb-10"
alt=""
/>
</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 Fylo works
<img src="images/icon-arrow.svg" class="inline pb-2" alt="" />
</a>
</div>
</div>
</div>
</section>
<!-- Testimonials section -->
<section id="testimonials" class="bg-gray-50 dark:bg-darkBlue">
<div class="container mx-auto px-6 pt-12 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 -->
<img
src="images/bg-quotes.png"
alt=""
class="absolute left-1 -top-2 w-10 md:-top-16 md:w-20"
/>
<!-- Box one -->
<div
class="flex flex-col p-10 space-y-6 rounded-lg md:w-1/3 bg-gray-100 dark:bg-darkBlue3"
>
<p class="text-sm leading-5 md:text-lg">
Fylo 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"
class="w-10 h-10 rounded-full"
alt=""
/>
<div>
<h5 class="text-sm font-semibold">Satich 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 rounded-lg md:w-1/3 bg-gray-100 dark:bg-darkBlue3"
>
<p class="text-sm leading-5 md:text-lg">
Fylo 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"
class="w-10 h-10 rounded-full"
alt=""
/>
<div>
<h5 class="text-sm font-semibold">Bruce McKenzie</h5>
<p class="text-xs font-extralight">Founder & CEO. Huddle 2</p>
</div>
</div>
</div>
<!-- Box 3 -->
<div
class="flex flex-col p-10 space-y-6 rounded-lg md:w-1/3 bg-gray-100 dark:bg-darkBlue3"
>
<p class="text-sm leading-5 md:text-lg">
Fylo 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"
class="w-10 h-10 rounded-full"
alt=""
/>
<div>
<h5 class="text-sm font-semibold">Bruce McKenzie</h5>
<p class="text-xs font-extralight">Founder & CEO. Huddle 2</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 -top-40 max-w-4xl mx-auto p-10 px-6 space-y-6 text-center rounded-lg bg-gray-200 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 and 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@example.com"
/>
</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 and smooth scroll -->
<footer class="bg-darkBlue2 text-white">
<div class="container pt-12 mx-auto px-5 pb-10">
<div
class="flex flex-col justify-between space-y-24 md:flex-row md:space-y-0"
>
<!-- Email and phone -->
<div class="mt-10 spcae-y-6">
<div class="flex items-center space-x-3 md:-mt-10">
<div class="w-6">
<img src="images/icon-phone.svg" class="scale-10" alt="" />
</div>
<div>+201532649845</div>
</div>
<div class="flex items-center space-x-3">
<div class="w-6">
<img src="images/icon-email.svg" class="scale-10" alt="" />
</div>
<div>example@fylo.com</div>
</div>
</div>
<!-- menu -->
<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"
class="p-2 bg-darkBlue rounded-full ficon"
alt=""
/>
</a>
</div>
<div>
<a href="#">
<img
src="images/twitter.svg"
class="p-2 bg-darkBlue rounded-full ficon"
alt=""
/>
</a>
</div>
<div>
<a href="#">
<img
src="images/instagram.svg"
class="p-2 bg-darkBlue rounded-full ficon"
alt=""
/>
</a>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>