-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
458 lines (453 loc) · 17.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Bootstrap demo</title>
<link
rel="shortcut icon"
href="assets/images/favicon-32x32.png"
type="image/x-icon"
/>
<!-- BOOTSTRAP CDN -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM"
crossorigin="anonymous"
/>
<!-- FONTS CDN -->
<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=Be+Vietnam+Pro:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<!-- CUSTOM CSS -->
<link rel="stylesheet" href="style.css" crossorigin="anonymous" />
</head>
<body>
<main>
<div class="bg-wrapper">
<!-- HEADER SECTION: START -->
<!-- .navbar: wrapper class -->
<!-- .navbar-expand-lg: make the .navbar-collapse visible from lg -->
<nav class="navbar navbar-expand-lg">
<!-- .container: to give space on left and right -->
<div class="container">
<!-- .navbar-brand: for adding brand assets -->
<a class="navbar-brand" href="#">
<figure class="m-0">
<img src="assets/images/logo.svg" alt="manage-logo" />
</figure>
</a>
<!-- .navbar-toggler: to allow toggling .navbar-collapse -->
<!-- data-bs-: helps bootstrap JS to locate collapsible section -->
<button
class="navbar-toggler btn btn-transparent"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<img
src="assets/images/icon-hamburger.svg"
alt="icon-hamburger"
/>
</button>
<!-- .navbar-collapse: to make collapsible menu -->
<!-- .collapse: to make menu default collapsed -->
<!-- #navbarSupportedContent: to mark this element for collapsible menu -->
<div
class="collapse navbar-collapse justify-content-between"
id="navbarSupportedContent"
>
<!-- .navbar-nav: Used for navigation menu -->
<!-- .flex-grow-1 justify-content-center: for centered align menu -->
<ul
class="navbar-nav me-auto mb-2 mb-lg-0 flex-grow-1 justify-content-center"
>
<!-- .nav-item: For individual items -->
<li class="nav-item">
<!-- .nav-link: For hyperlink of an individual items -->
<a class="nav-link" href="#">Pricing</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Product</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Careers</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Community</a>
</li>
</ul>
<button class="btn btn-primary d-none d-lg-block">
Get Started
</button>
</div>
</div>
</nav>
<!-- HEADER SECTION: END -->
<!-- HERO SECTION: START -->
<section class="hero-wrapper mb-5">
<div class="container">
<div class="hero">
<div class="hero-image order-lg-2">
<figure class="m-0">
<img
class="img d-block"
src="assets/images/illustration-intro.svg"
alt="illustration-intro"
/>
</figure>
</div>
<div
class="hero-content flex-fill d-md-flex flex-column justify-content-center align-items-center"
>
<h1>Bring everyone together to build better products.</h1>
<p>
Manage makes it simple for software teams to plan day-to-day
tasks while keeping the larger team goals in view.
</p>
<button class="btn btn-primary call-to-action">
Get Started
</button>
</div>
</div>
</div>
</section>
<!-- HERO SECTION: END -->
<!-- ABOUT SECTION: START -->
<section class="about">
<div class="container">
<div
class="d-flex flex-column flex-lg-row justify-content-lg-between gap-lg-5"
>
<div class="about-content px-5 px-lg-0 text-center text-lg-start">
<h3>What’s different about Manage?</h3>
<p>
Manage provides all the functionality your team needs, without
the complexity. Our software is tailor-made for modern digital
product teams.
</p>
</div>
<div class="about-feature-wrapper">
<div class="about-feature">
<div
class="feature-header d-flex justify-content-start align-items-center"
>
<span class="badge rounded-pill bg-primary py-2 px-3"
>01</span
>
<h6 class="px-2 flex-fill">Track company-wide progress</h6>
</div>
<p class="ms-lg-5">
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 class="about-feature">
<div
class="feature-header d-flex justify-content-start align-items-center"
>
<span class="badge rounded-pill bg-primary py-2 px-3"
>02</span
>
<h6 class="px-2 flex-fill">Advanced built-in reports</h6>
</div>
<p class="ms-lg-5">
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 class="about-feature">
<div
class="feature-header d-flex justify-content-start align-items-center"
>
<span class="badge rounded-pill bg-primary py-2 px-3"
>03</span
>
<h6 class="px-2 flex-fill">
Everything you need in one place
</h6>
</div>
<p class="ms-lg-5">
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>
<!-- ABOUT SECTION: END -->
</div>
<!-- TESTIMONIAL SECTION: START -->
<section class="testimonials">
<div
class="container py-5 d-flex flex-column justify-content-center align-items-center"
>
<h3 class="mb-5">What they've said</h3>
<div
id="carouselWrapper"
class="carousel slide"
data-bs-ride="carousel"
>
<div class="carousel-indicators d-lg-none">
<button
type="button"
data-bs-target="#carouselWrapper"
data-bs-slide-to="0"
class="active"
aria-current="true"
aria-label="Slide 1"
></button>
<button
type="button"
data-bs-target="#carouselWrapper"
data-bs-slide-to="1"
class="active"
aria-current="true"
aria-label="Slide 2"
></button>
<button
type="button"
data-bs-target="#carouselWrapper"
data-bs-slide-to="2"
class="active"
aria-current="true"
aria-label="Slide 3"
></button>
<button
type="button"
data-bs-target="#carouselWrapper"
data-bs-slide-to="3"
class="active"
aria-current="true"
aria-label="Slide 4"
></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<div class="card text-center">
<div class="card-avatar">
<img
src="assets/images/avatar-anisha.png"
alt="anisha"
class="card-img-top img"
/>
</div>
<div class="card-body">
<h6 class="card-title">Anisha Li</h6>
<p class="card-text">
“Manage has supercharged our team’s workflow. The ability
to maintain visibility on larger milestones at all times
keeps everyone motivated.”
</p>
</div>
</div>
</div>
<div class="carousel-item">
<div class="card text-center">
<div class="card-avatar">
<img
src="assets/images/avatar-ali.png"
alt="Ali"
class="card-img-top img"
/>
</div>
<div class="card-body">
<h6 class="card-title">Ali Bravo</h6>
<p class="card-text">
“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>
</div>
</div>
<div class="carousel-item">
<div class="card text-center">
<div class="card-avatar">
<img
src="assets/images/avatar-richard.png"
alt="Richard"
class="card-img-top img"
/>
</div>
<div class="card-body">
<h6 class="card-title">Richard Watts</h6>
<p class="card-text">
“Manage allows us to provide structure and process. It
keeps us organized and focused. I can’t stop recommending
them to everyone I talk to!”
</p>
</div>
</div>
</div>
<div class="carousel-item">
<div class="card text-center">
<div class="card-avatar">
<img
src="assets/images/avatar-shanai.png"
alt="shanai"
class="card-img-top img"
/>
</div>
<div class="card-body">
<h6 class="card-title">Shanai Gough</h6>
<p class="card-text">
“Their software allows us to track, manage and collaborate
on our projects from anywhere. It keeps the whole team
in-sync without being intrusive.”
</p>
</div>
</div>
</div>
</div>
<button
class="carousel-control-prev"
type="button"
data-bs-target="carouselWrapper"
data-bs-slide="prev"
>
<span
class="carousel-control-prev-icon"
aria-hidden="true"
></span>
<span class="visually-hidden">Previous</span>
</button>
<button
class="carousel-control-next"
type="button"
data-bs-target="carouselWrapper"
data-bs-slide="next"
>
<span
class="carousel-control-next-icon"
aria-hidden="true"
></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<button class="btn btn-primary call-to-action mt-3">
Get Started
</button>
</div>
</section>
<!-- TESTIMONIAL SECTION: END -->
<!-- GET STARTED SECTION: START -->
<section class="banner">
<div
class="container px-4 py-5 d-flex flex-column justify-content-center align-items-center flex-lg-row justify-content-lg-between text-center text-lg-start"
>
<h2 class="mb-3 m-lg-0 col-lg-4">
Simplify how your team works today.
</h2>
<button class="btn btn-primary btn-invert call-to-action mt-3 m-lg-0">
Get Started
</button>
</div>
</section>
<!-- GET STARTED SECTION: END -->
<!-- FOOTER SECTION: START -->
<section class="footer">
<div class="container py-5 px-4">
<div class="row gx-lg-5">
<div class="col-12 col-lg-4 mb-4 order-1">
<div class="d-flex">
<input
type="text"
class="form-control rounded-5 py-2 px-3"
placeholder="Updates in your inbox..."
/>
<button type="button" class="btn btn-primary">GO</button>
</div>
</div>
<div class="col-12 col-lg-4 mb-4">
<div class="d-flex justify-content-around">
<ul class="nav flex-column">
<li class="nav-item mb-2">Home</li>
<li class="nav-item mb-2">Pricing</li>
<li class="nav-item mb-2">Products</li>
<li class="nav-item mb-2">About Us</li>
</ul>
<ul class="nav flex-column">
<li class="nav-item mb-2">Career</li>
<li class="nav-item mb-2">Community</li>
<li class="nav-item mb-2">Privacy Policy</li>
</ul>
</div>
</div>
<div class="col-12 col-lg-4 mb-4 order-2">
<ul class="social-menu nav d-flex justify-content-between">
<li class="nav-item">
<img src="assets/images/icon-facebook.svg" alt="facebook" />
</li>
<li class="nav-item">
<img src="assets/images/icon-youtube.svg" alt="youtube" />
</li>
<li class="nav-item">
<img src="assets/images/icon-twitter.svg" alt="twitter" />
</li>
<li class="nav-item">
<img src="assets/images/icon-pinterest.svg" alt="pinterest" />
</li>
<li class="nav-item">
<img src="assets/images/icon-instagram.svg" alt="instagram" />
</li>
</ul>
</div>
<div class="col-12 col-lg-4 mb-4 order-first">
<a class="navbar-brand" href="#">
<figure class="m-0 d-flex justify-content-center d-lg-block">
<img
class="w-auto"
src="assets/images/logo.svg"
alt="manage-logo"
/>
</figure>
</a>
</div>
<div class="col-12 col-lg-4 offset-lg-4 order-last">
<p class="text-center m-0">Copyright 2022. All Rights Reserved</p>
</div>
</div>
</div>
</section>
<!-- FOOTER SECTION: END -->
</main>
<!-- <script
src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js"
integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r"
crossorigin="anonymous"
></script> -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js"></script>
<script>
let items = document.querySelectorAll(".carousel .carousel-item");
items.forEach((el) => {
const minPerSlide = 3;
let next = el.nextElementSibling;
for (var i = 1; i < minPerSlide; i++) {
if (!next) {
// wrap carousel by using first child
next = items[0];
}
let cloneChild = next.cloneNode(true);
el.appendChild(cloneChild.children[0]);
next = next.nextElementSibling;
}
});
</script>
</body>
</html>