-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
597 lines (572 loc) · 18.8 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
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
<!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="https://cdn.jsdelivr.net/npm/tw-elements/dist/css/index.min.css"
/>
<link rel="stylesheet" href="dist/output.css"/>
<link
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap"
rel="stylesheet" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/tw-elements/dist/css/tw-elements.min.css" />
<script src="https://cdn.tailwindcss.com/3.3.0"></script>
<script>
tailwind.config = {
darkMode: "class",
theme: {
fontFamily: {
sans: ["Roboto", "sans-serif"],
body: ["Roboto", "sans-serif"],
mono: ["ui-monospace", "monospace"],
},
},
corePlugins: {
preflight: false,
},
};
</script>
</head>
<body>
<!-- Navbar -->
<div class="relative container mx-auto p-6">
<!-- Header container -->
<header class="flex items-center justify-between">
<!-- Logo -->
<div class="pt-2">
<img src="img/logo.svg" alt="" />
</div>
<!-- Menu Items -->
<div class="hidden space-x-6 md:flex">
<a href="#" class="hover:text-darkGrayishBlue">Pricing</a>
<a href="#" class="hover:text-darkGrayishBlue">Product</a>
<a href="#" class="hover:text-darkGrayishBlue">About Us</a>
<a href="#" class="hover:text-darkGrayishBlue">Careers</a>
<a href="#" class="hover:text-darkGrayishBlue">Community</a>
</div>
<!-- Button -->
<a
href="#"
class="hidden md:block p-3 px-6 pt-2 text-white bg-brightRed rounded-full baseline hover:bg-brightRedLight"
>Get Started</a
>
<!-- Hamburger Icon -->
<button
id="menu-btn"
class="block hamburger md:hidden focus:outline-none"
>
<span class="hamburger-top"></span>
<span class="hamburger-middle"></span>
<span class="hamburger-bottom"></span>
</button>
</header>
<!-- Mobile Menu -->
<div class="md:hidden">
<div
id="menu"
class="absolute flex-col items-center left-6 right-6 hidden self-end py-8 mt-10 space-y-6 sm:w-auto font-bold bg-white sm:self-center drop-shadow-md"
>
<a href="#">Pricing</a>
<a href="#">Product</a>
<a href="#">About Us</a>
<a href="#">Careers</a>
<a href="#">Community</a>
</div>
</div>
</div>
<section id="hero">
<!-- Flex Container -->
<div
class="container flex flex-col-reverse items-center px-6 mx-auto mt-10 space-y-0 md:space-y-0 md:flex-row"
>
<!-- Left item -->
<div class="flex flex-col mb-32 space-y-12 md:w-1/2">
<h1
class="max-w-md text-4xl font-bold text-center md:text-5xl md:text-left"
>
Bring everyone together to build better products
</h1>
<p
class="max-w-sm text-center text-darkGrayishBlue md:text-left"
>
Manage makes it simple for software teams to plan
day-to-day tasks while keeping the larger team goals in
view.
</p>
<div class="flex justify-center md:justify-start">
<a
href="#"
class="p-3 px-6 pt-2 text-white bg-brightRed rounded-full baseline hover:bg-brightRedLight"
>Get Started</a
>
</div>
</div>
<!-- Image -->
<div class="md:w-1/2">
<img src="img/illustration-intro.svg" alt="" />
</div>
</div>
</section>
<section id="features">
<!-- Flex container -->
<div
class="container flex flex-col px-4 mx-auto mt-10 space-y-12 md:space-y-0 md:flex-row"
>
<!-- What's Different -->
<div class="flex flex-col space-y-12 md:w-1/2">
<h2
class="max-w-md text-4xl font-bold text-center md:text-left"
>
What's different about Manage?
</h2>
<p
class="max-w-sm text-center text-darkGrayishBlue md:text-left"
>
Manage provides all the functionality your team needs,
without the complexity. Our software is tailor-made for
modern digital product teams.
</p>
</div>
<!-- Numbered List -->
<div class="flex flex-col space-y-8 md:w-1/2">
<!-- List Item 1 -->
<div
class="flex flex-col space-y-3 md:space-y-0 md:space-x-6 md:flex-row"
>
<!-- Heading -->
<div
class="rounded-l-full bg-brightRedSupLight md:bg-transparent"
>
<div class="flex items-center space-x-2">
<div
class="px-4 py-2 text-white rounded-full md:py-1 bg-brightRed"
>
01
</div>
<h3
class="text-base font-bold md:mb-4 md:hidden"
>
Track company-wide progress
</h3>
</div>
</div>
<div>
<h3 class="hidden mb-4 text-lg font-bold md:block">
Track company-wide progress
</h3>
<p class="text-darkGrayishBlue">
See how your day-to-day tasks fit into the wider
vision. Go from tracking progress at the
milestone level all the way done to the smallest
of details. Never lose sight of the bigger
picture again.
</p>
</div>
</div>
<!-- List Item 2 -->
<div
class="flex flex-col space-y-3 md:space-y-0 md:space-x-6 md:flex-row"
>
<!-- Heading -->
<div
class="rounded-l-full bg-brightRedSupLight md:bg-transparent"
>
<div class="flex items-center space-x-2">
<div
class="px-4 py-2 text-white rounded-full md:py-1 bg-brightRed"
>
02
</div>
<h3
class="text-base font-bold md:mb-4 md:hidden"
>
Advanced built-in reports
</h3>
</div>
</div>
<div>
<h3 class="hidden mb-4 text-lg font-bold md:block">
Advanced built-in reports
</h3>
<p class="text-darkGrayishBlue">
Set internal delivery estimates and track
progress toward company goals. Our customisable
dashboard helps you build out the reports you
need to keep key stakeholders informed.
</p>
</div>
</div>
<!-- List Item 3 -->
<div
class="flex flex-col space-y-3 md:space-y-0 md:space-x-6 md:flex-row"
>
<!-- Heading -->
<div
class="rounded-l-full bg-brightRedSupLight md:bg-transparent"
>
<div class="flex items-center space-x-2">
<div
class="px-4 py-2 text-white rounded-full md:py-1 bg-brightRed"
>
03
</div>
<h3
class="text-base font-bold md:mb-4 md:hidden"
>
Everything you need in one place
</h3>
</div>
</div>
<div>
<h3 class="hidden mb-4 text-lg font-bold md:block">
Everything you need in one place
</h3>
<p class="text-darkGrayishBlue">
Stop jumping from one service to another to
communicate, store files, track tasks and share
documents. Manage offers an all-in-one team
productivity solution.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section id="testimonials">
<!-- Container to heading and testm blocks -->
<div class="max-w-6xl px-5 mx-auto mt-32 text-center">
<!-- Heading -->
<h2 class="text-4xl font-bold text-center">
What's Different About Manage?
</h2>
<!-- Testimonials Container -->
<div class="flex flex-col mt-24 md:flex-row md:space-x-6">
<!-- Testimonial 1 -->
<div
class="flex flex-col items-center p-6 space-y-6 rounded-lg bg-veryLightGray md:w-1/3"
>
<img
src="img/avatar-anisha.png"
class="w-16 -mt-14"
alt=""
/>
<h5 class="text-lg font-bold">Anisha Li</h5>
<p class="text-sm text-darkGrayishBlue">
“Manage has supercharged our team’s workflow. The
ability to maintain visibility on larger milestones
at all times keeps everyone motivated.”
</p>
</div>
<!-- Testimonial 2 -->
<div
class="hidden flex-col items-center p-6 space-y-6 rounded-lg bg-veryLightGray md:flex md:w-1/3"
>
<img
src="img/avatar-ali.png"
class="w-16 -mt-14"
alt=""
/>
<h5 class="text-lg font-bold">Ali Bravo</h5>
<p class="text-sm text-darkGrayishBlue">
“We have been able to cancel so many other
subscriptions since using Manage. There is no more
cross-channel confusion and everyone is much more
focused.”
</p>
</div>
<!-- Testimonial 3 -->
<div
class="hidden flex-col items-center p-6 s pace-y-6 rounded-lg bg-veryLightGray md:flex md:w-1/3"
>
<img
src="img/avatar-richard.png"
class="w-16 -mt-14"
alt=""
/>
<h5 class="text-lg font-bold">Richard Watts</h5>
<p class="text-sm text-darkGrayishBlue">
“Manage has supercharged our team’s workflow. The
ability to maintain visibility on larger milestones
at all times keeps everyone motivated.”
</p>
</div>
</div>
<!-- Button -->
<div class="my-16">
<a
href="#"
class="p-3 px-6 pt-2 text-white bg-brightRed rounded-full baseline hover:bg-brightRedLight"
>Get Started</a
>
</div>
</div>
</section>
<section id="cta" class="bg-brightRed">
<!-- Flex Container -->
<div
class="container flex flex-col items-center justify-between px-6 py-24 mx-auto space-y-12 md:py-12 md:flex-row md:space-y-0"
>
<!-- Heading -->
<h2
class="text-5xl font-bold leading-tight text-center text-white md:text-4xl md:max-w-xl md:text-left"
>
Simplify how your team works today
</h2>
<!-- Button -->
<div>
<a
href="#"
class="p-3 px-6 pt-2 text-brightRed bg-white rounded-full baseline hover:bg-gray-900"
>Get Started</a
>
</div>
</div>
</section>
<section id="faq" class="bg-white py-6 sm:py-8 lg:py-12">
<div class="max-w-screen-2xl px-4 md:px-8 mx-auto">
<!-- text - start -->
<div class="mb-10 md:mb-16">
<h2
class="text-darkBlue text-2xl lg:text-3xl font-bold text-center mb-4 md:mb-6"
>
Frequently asked questions
</h2>
<p
class="max-w-screen-md text-darkGrayishBlue md:text-lg text-center mx-auto"
>
This is a section of some simple filler text, also known
as placeholder text. It shares some characteristics of a
real written text but is random or otherwise generated.
</p>
</div>
<!-- text - end -->
<div class="flex flex-col max-w-screen-sm border-t mx-auto">
<!-- question - start -->
<div class="border-b">
<div
class="flex justify-between text-black hover:text-darkGrayishBlue active:text-darkGrayishBlue cursor-pointer gap-2 py-4"
>
<span
class="md:text-lg font-semibold transition duration-100"
>How does the product work?</span
>
<span class="">
<svg
xmlns="http://www.w3.org/2000/svg"
class="w-6 h-6"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M19 9l-7 7-7-7"
/>
</svg>
</span>
</div>
<p class="hidden text-darkGrayishBlue mb-4">
This is a section of some simple filler text, also
known as placeholder text. It shares some
characteristics of a real written text but is random
or otherwise generated. It may be used to display a
sample of fonts or generate text for testing.
</p>
</div>
<!-- question - end -->
<!-- question - start -->
<div class="border-b">
<div
class="flex justify-between text-black hover:text-darkGrayishBlue cursor-pointer gap-2 py-4"
>
<span
class="md:text-lg font-semibold transition duration-100"
>What are the features?</span
>
<span class="active:text-brightRedLight00">
<svg
xmlns="http://www.w3.org/2000/svg"
class="w-6 h-6"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M19 9l-7 7-7-7"
/>
</svg>
</span>
</div>
<p class="hidden text-gray-500 mb-4">
This is a section of some simple filler text, also
known as placeholder text. It shares some
characteristics of a real written text but is random
or otherwise generated. It may be used to display a
sample of fonts or generate text for testing.
</p>
</div>
<!-- question - end -->
<!-- question - start -->
<div class="border-b">
<div
class="flex justify-between text-black hover:text-darkGrayishBlue cursor-pointer gap-2 py-4"
>
<span
class="md:text-lg font-semibold transition duration-100"
>What about integrations?</span
>
<span class="active:text-brightRedLight00">
<svg
xmlns="http://www.w3.org/2000/svg"
class="w-6 h-6"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M19 9l-7 7-7-7"
/>
</svg>
</span>
</div>
<p class="hidden text-gray-500 mb-4" >
This is a section of some simple filler text, also
known as placeholder text. It shares some
characteristics of a real written text but is random
or otherwise generated. It may be used to display a
sample of fonts or generate text for testing.
</p>
</div>
<!-- question - end -->
<!-- question - start -->
<div class="border-b">
<div
class="flex justify-between text-black hover:text-darkGrayishBlue cursor-pointer gap-2 py-4"
data-te-collapse-init
data-te-ripple-init
data-te-ripple-color="light"
data-te-target="#collapseExample"
aria-expanded="false"
aria-controls="collapseExample"
>
<span
class="md:text-lg font-semibold transition duration-100"
>Is support available?</span
>
<span class="active:text-brightRedLight">
<svg
xmlns="http://www.w3.org/2000/svg"
class="w-6 h-6"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M19 9l-7 7-7-7"
/>
</svg>
</span>
</div>
<p
class="text-gray-500 mb-4 !visible hidden"
id="collapseExample"
data-te-collapse-item
>
This is a section of some simple filler text, also
known as placeholder text. It shares some
characteristics of a real written text but is random
or otherwise generated. It may be used to display a
sample of fonts or generate text for testing.
</p>
</div>
<!-- question - end -->
</div>
</div>
</section>
<footer class="bg-veryDarkBlue">
<!-- Flex container -->
<div class="container flex flex-col-reverse justify-between px-6 py-10 mx-auto space-y-8 md:flex-row
md:space-y-0">
<!-- Logo and social links container -->
<div class="flex flex-col-reverse items-center justify-between
space-y-12 md:flex-col md:space-y-0 md:items-start">
<div class="mx-auto my-6 text-center text-white md:hidden">
Copiright © 2022, All Rights Reserved
</div>
<!-- Logo -->
<div>
<img src="img/logo-white.svg" alt="" class="h-8">
</div>
<!-- Social links container -->
<div class="flex justify-center space-x-4">
<!-- Link 1 -->
<a href="#">
<img src="img/icon-facebook.svg" alt="" class="h-8">
</a>
<!-- Link 1 -->
<a href="#">
<img src="img/icon-youtube.svg" alt="" class="h-8">
</a>
<!-- Link 1 -->
<a href="#">
<img src="img/icon-twitter.svg" alt="" class="h-8">
</a>
<!-- Link 1 -->
<a href="#">
<img src="img/icon-pinterest.svg" alt="" class="h-8">
</a>
<!-- Link 1 -->
<a href="#">
<img src="img/icon-instagram.svg" alt="" class="h-8">
</a>
</div>
</div>
<!-- List container -->
<div class="flex justify-around space-x-32">
<div class="flex flex-col space-y-3 text-white">
<a href="#" class="hover:to-brightRed">Home</a>
<a href="#" class="hover:to-brightRed">Pricing</a>
<a href="#" class="hover:to-brightRed">Products</a>
<a href="#" class="hover:to-brightRed">About</a>
</div>
<div class="flex flex-col space-y-3 text-white">
<a href="#" class="hover:to-brightRed">Careers</a>
<a href="#" class="hover:to-brightRed">Community</a>
<a href="#" class="hover:to-brightRed">Privacy Policy</a>
<a href="#" class="hover:to-brightRed">Forum</a>
</div>
</div>
<!-- Input container -->
<div class="flex flex-col justify-between">
<form action="">
<div class="flex space-x-3">
<input type="text" class="flex-1 px-4 rounded-full focus:outline-none" placeholder="Updated in your inbox">
<button class="px-6 py-2 text-white rounded-full bg-brightRed hover:bg-brightRedLight focus:outline-none">Go</button>
</div>
</form>
<div class="hidden text-white md:block">Copyright © 2022, All right reserved</div>
</div>
</div>
</footer>
<script src="script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/tw-elements/dist/js/tw-elements.umd.min.js"></script>
</body>
</html>