-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
316 lines (300 loc) · 24 KB
/
index.html
File metadata and controls
316 lines (300 loc) · 24 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
<!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">
<!-- SITE PAGE TITLE -->
<title>Frontend Mentor | Manage landing page</title>
<!-- SITE PAGE DESCRIPTION -->
<meta name="description" content="Bring everyone together to build better products.">
<!-- SITE AUTHORS -->
<meta name="author" content="Aman Singh Bhogal & Frontend Mentor">
<!-- FAVICON -->
<link rel="shortcut icon" href="src/img/favicon-32x32.png" type="image/x-icon" sizes="32x32">
<!-- TAILWIND ASSETS (FOR CLIENT DEPLOYMENT) -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- SWIPER JS STYLESHEET -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.css"/>
<!-- MAIN STYLESHEET -->
<link rel="stylesheet" href="public/output.css">
<!-- SWIPER JS SCRIPT -->
<script src="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.js" defer></script>
<!-- EMAIL VALIDATION SCRIPT -->
<script src="src/js/email-validation.js" defer></script>
<!-- MOBILE NAV MENU SCRIPT -->
<script src="src/js/mobile-nav-menu.js" defer></script>
<!-- TESTIMONIAL SLIDER SCRIPT -->
<script src="src/js/testimonial-slider.js" defer></script>
<!-- TEMPORARILY USING GOOGLE FONTS FROM SERVER -->
<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@500&display=swap" rel="stylesheet">
</head>
<body class="font-BeVietnamPro">
<!-- NAV BAR -->
<nav class="relative container mx-auto px-4 py-8 md:px-2 md:py-16 xl:px-12">
<!-- FLEX CONTAINER -->
<div class="flex items-center justify-between">
<!-- LOGO -->
<div class="pt-2">
<a href="index.html"><img src="src/img/logo.svg" height="24" width="146" alt="A horizontal wordmark logo with four dots of varying red and the words 'manage' next to it in lowercase sans-serif font"></a>
</div>
<div class="hidden md:flex space-x-6">
<a href="#" aria-label="Visit our Pricing page" class="text-veryDarkBlue hover:text-darkGrayishBlue transition ease-in">Pricing</a>
<a href="#" aria-label="Visit our Product page" class="hover:text-darkGrayishBlue transition ease-in">Product</a>
<a href="#" aria-label="Visit our About Us page" class="hover:text-darkGrayishBlue transition ease-in">About Us</a>
<a href="#" aria-label="Visit our Careers page" class="hover:text-darkGrayishBlue transition ease-in">Careers</a>
<a href="#" aria-label="Visit our Community page" class="hover:text-darkGrayishBlue transition ease-in">Community</a>
</div>
<!-- CTA BUTTON -->
<div class="button">
<a href="#" class="hidden cta-button text-sm p-3 px-6 pt-2 text-veryLightGray bg-brightRed rounded-full baseline transition ease-in hover:bg-brightRedLight md:block">Get Started</a>
</div>
<!-- MOBILE NAV MENU ICON -->
<button id="mobile-nav-btn" class="block hamburger focus:outline-none md:hidden">
<span></span>
<span></span>
<span></span>
</button>
</div>
<!-- MOBILE MENU -->
<div class="md:hidden">
<div id="mobile-nav-menu" class="hidden absolute flex-col items-center self-end rounded py-8 mt-10 space-y-6 font-bold bg-veryLightGray left-6 right-6 drop-shadow-lg sm:w-auto sm:self-center">
<a href="#" class="text-darkBlue">Pricing</a>
<a href="#" class="text-darkBlue">Product</a>
<a href="#" class="text-darkBlue">About Us</a>
<a href="#" class="text-darkBlue">Careers</a>
<a href="#" class="text-darkBlue">Community</a>
</div>
</div>
</nav>
<!-- HERO SECTION -->
<section id="hero">
<!-- FLEX CONTAINER -->
<div class="container flex flex-col-reverse items-center px-12 mx-auto mt-10 space-y-0 md:flex-row md:space-y-0">
<!-- LEFT COLUMN -->
<div class="flex flex-col mb-2 space-y-12 md:mb-32 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 sm:mx-auto lg:mx-0 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="button flex justify-center md:justify-start">
<a href="#" class="cta-button p-3 px-6 pt-2 text-veryLightGray bg-brightRed rounded-full baseline transition ease-in drop-shadow-2xl shadow-brightRed hover:bg-brightRedLight">Get Started</a>
</div>
</div>
<!-- RIGHT COLUMN -->
<div class="md:w-1/2">
<img src="src/img/illustration-intro.svg" alt="A series of three picto-charts, incl. bar graphs, pie charts and percentage-proportion blocks">
</div>
</div>
</section>
<!-- FEATURES SECTION -->
<section id="features" class="md:py-40 xl:py-10">
<!-- FLEX CONTAINER -->
<div class="container flex flex-col mx-auto mt-10 space-y-12 sm:px-2 md:space-y-0 md:px-12 md:flex-row">
<!-- LEFT INFO COLUMN -->
<div class="flex-col space-y-12 h-full md:w-1/2">
<h2 class="max-w-md text-4xl font-bold text-center lg:mx-0 sm:mx-auto md:text-left">
What’s different about Manage?
</h2>
<p class="max-w-sm text-center text-darkGrayishBlue lg:mx-0 sm:mx-auto 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>
<!-- FEATURES LIST COLUMN -->
<div class="flex flex-col space-y-12 md:px-12 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-brightRedSuperLight md:bg-transparent">
<div class="flex items-center space-x-2">
<!-- NUMBER LOZENGE -->
<div class="px-5 py-2 font-bold text-veryLightGray rounded-full bg-brightRed md:py-1">
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 text-center lg:mx-0 sm:mx-auto md:text-left">
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-brightRedSuperLight md:bg-transparent">
<div class="flex items-center space-x-2">
<!-- NUMBER LOZENGE -->
<div class="px-5 py-2 font-bold text-veryLightGray rounded-full bg-brightRed md:py-1">
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 text-center lg:mx-0 sm:mx-auto md:text-left">
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-brightRedSuperLight md:bg-transparent">
<div class="flex items-center space-x-2">
<!-- NUMBER LOZENGE -->
<div class="px-5 py-2 font-bold text-veryLightGray rounded-full bg-brightRed md:py-1">
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 text-center lg:mx-0 sm:mx-auto md:text-left">
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 -->
<section id="testimonials" class="overflow-hidden py-10">
<h2 class="text-4xl font-bold text-center py-6">What they've said</h2>
<div class="flex container mx-auto">
<!-- SWIPER -->
<div class="flex flex-col swiper testimonial-slider py-16 w-full h-full md:flex-row">
<div class="flex swiper-wrapper">
<!-- TESTIMONIAL 1 -->
<div class="flex flex-col items-center shrink-0 swiper-slide text-center p-6 space-y-6 rounded-lg bg-veryLightGray w-full">
<img src="src/img/avatar-anisha.png" width="4rem" height="4rem" class="w-16 -mt-14 items-center" alt="Image of young Asian girl with glasses resting on her hair while looking at the camera">
<p class="font-bold text-darkBlue">Anisha Li</p>
<p class="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="flex flex-col items-center shrink-0 swiper-slide text-center p-6 space-y-6 rounded-lg bg-veryLightGray">
<img src="src/img/avatar-ali.png" width="4rem" height="4rem" class="w-16 -mt-14 items-center" alt="Image of a young Asian girl facing the camera with her eyes looking to the left against a foliage backdrop">
<p class="font-bold text-darkBlue">Ali Bravo</p>
<p class="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="flex flex-col items-center shrink-0 swiper-slide text-center p-6 space-y-6 rounded-lg bg-veryLightGray">
<img src="src/img/avatar-richard.png" width="4rem" height="4rem" class="w-16 -mt-14 items-center" alt="Image of an old gentleman looking at the camera with black thick-rimmed glasses, grey beard and blue-striped shirt with the top two buttons undone and a black overcoat">
<p class="font-bold text-darkBlue">Richard Watts</p>
<p class="text-darkGrayishBlue">“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>
<!-- TESTIMONIAL 4 -->
<div class="flex flex-col items-center shrink-0 swiper-slide text-center p-6 space-y-6 rounded-lg bg-veryLightGray">
<img src="src/img/avatar-shanai.png" width="4rem" height="4rem" class="w-16 -mt-14 items-center" alt="Image of young black woman with a large afro looking at the camera with a white shirt and black coat">
<p class="font-bold text-darkBlue">Shanai Gough</p>
<p class="text-darkGrayishBlue">“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>
<!-- PAGINATION BUBBLES -->
<div class="swiper-pagination"></div>
</div>
</div>
<div class="flex flex-col py-6 mx-auto items-center xl:pt-1 xl:pb-32">
<div class="button">
<a href="#" class="cta-button p-3 px-6 pt-2 text-veryLightGray bg-brightRed rounded-full baseline transition ease-in baseline hover:text-brightRedLight">
Get Started
</a>
</div>
</div>
</section>
<!-- CTA SECTION -->
<section id="cta-section" 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-veryLightGray md:text-4xl md:max-width-xl md:w-1/3 md:text-left">
Simplify how your team works today.
</h2>
<!-- CTA BUTTON -->
<div class="button">
<a href="#" class="p-3 px-6 pt-2 text-brightRed bg-veryLightGray rounded-full baseline hover:text-brightRedLight">
Get Started
</a>
</div>
</div>
</section>
<!-- FOOTER -->
<footer id="footer" class="bg-veryDarkBlue h-auto xl:h-275">
<!-- FLEX CONTAINER -->
<div class="container flex flex-col-reverse justify-between px-6 py-1 h-full mx-auto space-y-8 lg:flex-row lg:space-y-0">
<!-- LOGO AND SOCIAL MEDIA LINKS CONTAINER -->
<div class="flex flex-col-reverse items-center justify-between space-y-12 lg:flex-col lg:space-y-0 lg:items-start">
<!-- LOGO -->
<div class="py-10 mt-5">
<img src="src/img/logo-white.svg" class="h-8" height="32px" width="194.67px" alt="A series of four dots with varying shades of red and the word manage placed next to it in white">
</div>
<!-- SOCIAL MEDIA LINKS -->
<div class="flex flex-row items-center justify-between w-full pt-5 space-x-4 lg:pb-8 sm:py-0">
<ul class="flex flex-row justify-between list-none w-full py-1">
<li><a href="#" aria-label="Visit our Facebook page"><svg class="http://www.w3.org/2000/svg social-icons-footer text-veryLightGray fill-current transition ease-in h-8 w-8 hover:fill-brightRed scale-150 md:h-6 md:scale-110"><path d="M18.896 0H1.104C.494 0 0 .494 0 1.104v17.793C0 19.506.494 20 1.104 20h9.58v-7.745H8.076V9.237h2.606V7.01c0-2.583 1.578-3.99 3.883-3.99 1.104 0 2.052.082 2.329.119v2.7h-1.598c-1.254 0-1.496.597-1.496 1.47v1.928h2.989l-.39 3.018h-2.6V20h5.098c.608 0 1.102-.494 1.102-1.104V1.104C20 .494 19.506 0 18.896 0z"/></svg></a></li>
<li><a href="#" aria-label="Visit our YouTube page"><svg class="http://www.w3.org/2000/svg social-icons-footer text-veryLightGray fill-current transition ease-in h-8 w-8 hover:fill-brightRed scale-150 md:h-6 md:scale-110"><path d="M10.333 0c-5.522 0-10 4.478-10 10 0 5.523 4.478 10 10 10 5.523 0 10-4.477 10-10 0-5.522-4.477-10-10-10zm3.701 14.077c-1.752.12-5.653.12-7.402 0C4.735 13.947 4.514 13.018 4.5 10c.014-3.024.237-3.947 2.132-4.077 1.749-.12 5.651-.12 7.402 0 1.898.13 2.118 1.059 2.133 4.077-.015 3.024-.238 3.947-2.133 4.077zM8.667 8.048l4.097 1.949-4.097 1.955V8.048z"/></svg></a></li>
<li><a href="#" aria-label="Visit our Twitter page"><svg class="http://www.w3.org/2000/svg social-icons-footer text-veryLightGray fill-current transition ease-in h-8 w-8 hover:fill-brightRed scale-150 md:h-6 md:scale-110"><path d="M20.667 2.797a8.192 8.192 0 01-2.357.646 4.11 4.11 0 001.804-2.27 8.22 8.22 0 01-2.606.996A4.096 4.096 0 0014.513.873c-2.649 0-4.595 2.472-3.997 5.038a11.648 11.648 0 01-8.457-4.287 4.109 4.109 0 001.27 5.478A4.086 4.086 0 011.47 6.59c-.045 1.901 1.317 3.68 3.29 4.075a4.113 4.113 0 01-1.853.07 4.106 4.106 0 003.834 2.85 8.25 8.25 0 01-6.075 1.7 11.616 11.616 0 006.29 1.843c7.618 0 11.922-6.434 11.662-12.205a8.354 8.354 0 002.048-2.124z"/></svg></a></li>
<li><a href="#" aria-label="Visit our Pinterest page"><svg class="http://www.w3.org/2000/svg social-icons-footer text-veryLightGray fill-current transition ease-in h-8 w-8 hover:fill-brightRed scale-150 md:h-6 md:scale-110"><path d="M10 0C4.478 0 0 4.477 0 10c0 4.237 2.636 7.855 6.356 9.312-.088-.791-.167-2.005.035-2.868.182-.78 1.172-4.97 1.172-4.97s-.299-.6-.299-1.486c0-1.39.806-2.428 1.81-2.428.852 0 1.264.64 1.264 1.408 0 .858-.545 2.14-.828 3.33-.236.995.5 1.807 1.48 1.807 1.778 0 3.144-1.874 3.144-4.58 0-2.393-1.72-4.068-4.177-4.068-2.845 0-4.515 2.135-4.515 4.34 0 .859.331 1.781.745 2.281a.3.3 0 01.069.288l-.278 1.133c-.044.183-.145.223-.335.134-1.249-.581-2.03-2.407-2.03-3.874 0-3.154 2.292-6.052 6.608-6.052 3.469 0 6.165 2.473 6.165 5.776 0 3.447-2.173 6.22-5.19 6.22-1.013 0-1.965-.525-2.291-1.148l-.623 2.378c-.226.869-.835 1.958-1.244 2.621.937.29 1.931.446 2.962.446 5.522 0 10-4.477 10-10S15.522 0 10 0z"/></svg></a></li>
<li><a href="#" aria-label="Visit our Instagram page"><svg class="http://www.w3.org/2000/svg social-icons-footer text-veryLightGray fill-current transition ease-in h-8 w-8 hover:fill-brightRed scale-150 md:h-6 md:scale-110"><path d="M10.333 1.802c2.67 0 2.987.01 4.042.059 2.71.123 3.976 1.409 4.1 4.099.048 1.054.057 1.37.057 4.04 0 2.672-.01 2.988-.058 4.042-.124 2.687-1.386 3.975-4.099 4.099-1.055.048-1.37.058-4.042.058-2.67 0-2.986-.01-4.04-.058-2.717-.124-3.976-1.416-4.1-4.1-.048-1.054-.058-1.37-.058-4.041 0-2.67.01-2.986.058-4.04.124-2.69 1.387-3.977 4.1-4.1 1.054-.048 1.37-.058 4.04-.058zm0-1.802C7.618 0 7.278.012 6.211.06 2.579.227.56 2.242.394 5.877.345 6.944.334 7.284.334 10s.011 3.057.06 4.123c.166 3.632 2.181 5.65 5.816 5.817 1.068.048 1.408.06 4.123.06 2.716 0 3.057-.012 4.124-.06 3.628-.167 5.651-2.182 5.816-5.817.049-1.066.06-1.407.06-4.123s-.011-3.056-.06-4.122C20.11 2.249 18.093.228 14.458.06 13.39.01 13.049 0 10.333 0zm0 4.865a5.135 5.135 0 100 10.27 5.135 5.135 0 000-10.27zm0 8.468a3.333 3.333 0 110-6.666 3.333 3.333 0 010 6.666zm5.339-9.87a1.2 1.2 0 10-.001 2.4 1.2 1.2 0 000-2.4z"/></svg></a></li>
</ul>
</div>
</div>
<!--FOOTER NAVIGATION LINK MENUS -->
<div class="flex justify-around space-x-32 mx-auto lg:pt-14">
<!-- MENU 1 -->
<div class="flex flex-col space-y-4 text-veryLightGray">
<a href="#" aria-label="Visit our Home page" class="transition ease-in hover:text-brightRed">Home</a>
<a href="#" aria-label="Visit our Pricing page" class="transition ease-in hover:text-brightRed">Pricing</a>
<a href="#" aria-label="Visit our Products page" class="transition ease-in hover:text-brightRed">Products</a>
<a href="#" aria-label="Visit our About Us page" class="transition ease-in hover:text-brightRed">About Us</a>
</div>
<!-- MENU 2 -->
<div class="flex flex-col space-y-3 text-veryLightGray sm:flex-start">
<a href="#" aria-label="Visit our Careers page" class="transition ease-in hover:text-brightRed">Careers</a>
<a href="#" aria-label="Visit our Community page" class="transition ease-in hover:text-brightRed">Community</a>
<a href="#" aria-label="Visit our Privacy page" class="transition ease-in hover:text-brightRed">Privacy Policy</a>
</div>
</div>
<!-- NEWSLETTER SIGN UP -->
<div class="flex flex-col justify-between sm:py-5 items-center lg:items-end lg:pt-10">
<div class="flex">
<div class="flex space-x-3 px-1.5">
<div class="flex flex-col space-y-2">
<input id="email-address-input" class="p-3 px-6 pt-2 text-brightRed bg-veryLightGray rounded-full outline-none" placeholder="Updates in your inbox..." type="text">
<p id="response-message" class="italic text-brightRed pl-6"><p>
</div>
</div>
<div>
<button id="submit-email-address" class="p-3 px-6 pt-2 font-bold text-veryLightGray bg-brightRed rounded-full baseline transition ease-in hover:bg-brightRedLight">Go</button>
</div>
</div>
<!-- DESKTOP COPYRIGHT BANNER -->
<div class="hidden flex-col text-center lg:flex-row lg:justify-end lg:pb-4 lg:flex">
<p class="text-darkGrayishBlue">Copyright 2020. All Rights Reserved</p>
</div>
</div>
</div>
<!-- MOBILE COPYRIGHT BANNER -->
<div class="flex flex-col text-center py-4 lg:hidden">
<p class="text-darkGrayishBlue">Copyright 2020. All Rights Reserved</p>
</div>
<!-- ATTRIBUTIONS BANNER -->
<div class="flex flex-col attribution bg-veryDarkBlue py-4 items-center sm:py-2">
<p class="text-darkGrayishBlue text-center sm:px-5">Challenge by <a class="hover:text-brightRedLight transition ease-in" href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>. Coded by <a class="hover:text-brightRedLight transition ease-in" href="https://github.com/asbhogal/Tailwind-CSS-Website">Aman Singh Bhogal</a>.</p>
</div>
</footer>
</body>
</html>