-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
617 lines (567 loc) · 21.7 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
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Tilt+Neon&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./build/style/style.css" />
<title>Dev Bank</title>
</head>
<body class="font-ff-primary">
<header class="w-full bg-clr-primary">
<!-- Top Bar -->
<div
class="relative container flex items-center justify-between py-4 px-4 md:px-0 md:mx-auto"
>
<!-- Logo -->
<div>
<img src="./build/assets/logoipsum-280.svg" class="h-8" alt="Logo" />
</div>
<!-- Hamburger Icon -->
<button class="md:hidden" id="mobile-menu-toggle">
<img
class="h-10"
src="./build/assets/burger-menu-svgrepo-com.svg"
alt="Hamburger menu"
/>
</button>
<!-- Hamburger Menu -->
<div
class="absolute hidden md:hidden flex flex-col items-start justify-center gap-4 max-h-screen w-full left-0 top-full px-4 py-8 bg-clr-primary"
id="mobile-menu"
>
<!-- Mobile Nav -->
<nav class="flex flex-col gap-4">
<a
href="#getStarted"
class="text-clr-accent font-bold text-2xl duration-300 active:text-clr-light"
>Get Started</a
>
<a
href="#features"
class="text-clr-accent font-bold text-2xl duration-300 active:text-clr-light"
>Features</a
>
<a
href="#about"
class="text-clr-accent font-bold text-2xl duration-300 active:text-clr-light"
>About</a
>
<a
href="#contact"
class="text-clr-accent font-bold text-2xl duration-300 active:text-clr-light"
>Contact</a
>
</nav>
<!-- Mobile Buttons -->
<button
class="font-ff-secondary text-xl text-clr-light duration-300 active:text-clr-accent"
>
Log In
</button>
<button
class="bg-clr-light text-xl text-clr-accent border-4 border-clr-accent py-2 px-4 rounded-xl font-extrabold duration-300 active:bg-clr-accent active:text-clr-light active:border-clr-accent"
>
Sign Up
</button>
</div>
<!-- Tablet/Descktop View -->
<!-- Tablet/Descktop Nav -->
<nav class="hidden md:flex gap-12">
<a
href="#getStarted"
class="font-bold text-clr-light text-2xl duration-300 hover:text-clr-accent hover:scale-125"
>Get Started</a
>
<a
href="#features"
class="font-bold text-clr-light text-2xl duration-300 hover:text-clr-accent hover:scale-125"
>Features</a
>
<a
href="#about"
class="font-bold text-clr-light text-2xl duration-300 hover:text-clr-accent hover:scale-125"
>About</a
>
<a
href="#contact"
class="font-bold text-clr-light text-2xl duration-300 hover:text-clr-accent hover:scale-125"
>Contact</a
>
</nav>
<!-- Tablet/Desktop Buttons -->
<div class="hidden md:flex gap-4">
<button
class="text-clr-light font-ff-secondary duration-300 hover:text-clr-accent"
>
Log In
</button>
<button
class="bg-clr-accent text-clr-light py-2 px-4 rounded-xl font-extrabold duration-300 hover:text-clr-accent hover:bg-clr-light"
>
Sign Up
</button>
</div>
</div>
</header>
<main>
<!-- Get Started -->
<div
class="container mx-auto my-8 grid grid-cols-1 gap-16 md:grid-cols-2"
id="getStarted"
>
<!-- Call to action -->
<div class="text-center mx-2 md:text-left md:mx-0">
<h1 class="font-extrabold text-3xl text-clr-accent">
The Clever Place to Keep Your Cache
</h1>
<p class="font-ff-secondary mb-4">
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Magni,
dicta asperiores. Incidunt sunt commodi quos, quidem similique
doloremque velit odit fugit asperiores odio molestias nobis.
Repudiandae architecto ea voluptas error adipisci.
</p>
<button
class="bg-clr-accent text-clr-light py-2 px-4 rounded-xl font-extrabold duration-300 hover:text-clr-light hover:bg-clr-primary"
>
Join Dev Now
</button>
<button
class="bg-clr-accent text-clr-light py-2 px-4 rounded-xl font-extrabold duration-300 hover:text-clr-light hover:bg-clr-primary"
>
Join Our Discord Server
</button>
</div>
<div
class="bg-cover bg-center hidden md:block rounded-3xl"
style="
background-image: url(./build/assets/images/dmitry-korkhau-8c34G-QJU_o-unsplash.jpg);
"
></div>
</div>
<!-- Endorsements -->
<div class="w-full py-8 bg-clr-primary my-8">
<div class="container mx-auto flex flex-col items-center">
<h3
class="font-ff-secondary pb-8 text-xl text-clr-accent md:text-2xl"
>
Endorsed by global companies like
</h3>
<div class="w-full flex justify-around md:justify-between">
<!-- VSC Logo -->
<img
src="./build/assets/endorsements-svg/visual-studio-145-svgrepo-com.svg"
class="h-16"
alt="Visual studio code logo"
/>
<!-- GitHub Logo -->
<img
src="./build/assets/endorsements-svg/logo-github-svgrepo-com.svg"
class="h-16"
alt="GitHub logo"
/>
<!-- Tux logo -->
<img
src="./build/assets/endorsements-svg/logo-tux-svgrepo-com.svg"
class="h-16"
alt="Tux logo"
/>
<!-- Python Logo -->
<img
src="./build/assets/endorsements-svg/logo-python-svgrepo-com.svg"
class="h-16"
alt="Python logo"
/>
<!-- Google Logo -->
<img
src="./build/assets/endorsements-svg/logo-google-svgrepo-com.svg"
class="h-16"
alt="Google logo"
/>
</div>
</div>
</div>
<!-- Features -->
<div class="container mx-auto my-8 text-center" id="features">
<h1 class="text-3xl font-extrabold text-clr-accent">
Elevate Your Banking with Dev
</h1>
<p class="px-4 pb-8 font-ff-secondary max-w-2xl mx-auto">
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Qui nemo
ratione fuga cum officiis incidunt voluptatem blanditiis, numquam
corrupti animi voluptates sunt, vitae illum sequi temporibus et eaque
ipsum, modi alias fugit!
</p>
<!-- Card Container -->
<div class="grid grid-cols-1 gap-12 mx-4 md:grid-cols-2 lg:grid-cols-3">
<!-- Card 1 -->
<div
class="flex flex-col items-center p-4 gap-2 rounded-2xl bg-clr-primary duration-300 group hover:bg-clr-accent"
>
<img
src="./build/assets/cards-svg/account-management-svgrepo-com.svg"
class="h-12 w-fit p-2 bg-clr-accent rounded-2xl group-hover:bg-clr-primary"
alt="Account icon"
/>
<h3
class="text-xl font-bold text-clr-accent group-hover:text-clr-primary"
>
Developer-Focused Account Plans
</h3>
<p class="font-ff-secondary text-clr-light">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Voluptatum quos magnam ea ipsam repellat assumenda possimus. Unde,
quaerat.
</p>
</div>
<!-- Card 2 -->
<div
class="flex flex-col items-center p-4 gap-2 rounded-2xl bg-clr-primary duration-300 group hover:bg-clr-accent"
>
<img
src="./build/assets/cards-svg/web-page-svgrepo-com.svg"
class="h-12 w-fit p-2 bg-clr-accent rounded-2xl group-hover:bg-clr-primary"
alt="Webpage icon"
/>
<h3
class="text-xl font-bold text-clr-accent group-hover:text-clr-primary"
>
Advanced Online Banking Platform
</h3>
<p class="font-ff-secondary text-clr-light">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Voluptatum quos magnam ea ipsam repellat assumenda possimus. Unde,
quaerat.
</p>
</div>
<!-- Card 3 -->
<div
class="flex flex-col items-center p-4 gap-2 rounded-2xl bg-clr-primary duration-300 group hover:bg-clr-accent"
>
<img
src="./build/assets/cards-svg/screen-users-svgrepo-com.svg"
class="h-12 w-fit p-2 bg-clr-accent rounded-2xl group-hover:bg-clr-primary"
alt="Customer support icon"
/>
<h3
class="text-xl font-bold text-clr-accent group-hover:text-clr-primary"
>
Tech-Savvy Customer Support
</h3>
<p class="font-ff-secondary text-clr-light">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Voluptatum quos magnam ea ipsam repellat assumenda possimus. Unde,
quaerat.
</p>
</div>
<!-- Card 4 -->
<div
class="flex flex-col items-center p-4 gap-2 rounded-2xl bg-clr-primary duration-300 group hover:bg-clr-accent"
>
<img
src="./build/assets/cards-svg/security-card-svgrepo-com.svg"
class="h-12 w-fit p-2 bg-clr-accent rounded-2xl group-hover:bg-clr-primary"
alt="Security icon"
/>
<h3
class="text-xl font-bold text-clr-accent group-hover:text-clr-primary"
>
High-Level Security Features
</h3>
<p class="font-ff-secondary text-clr-light">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Voluptatum quos magnam ea ipsam repellat assumenda possimus. Unde,
quaerat.
</p>
</div>
<!-- Card 5 -->
<div
class="flex flex-col items-center p-4 gap-2 rounded-2xl bg-clr-primary duration-300 group hover:bg-clr-accent"
>
<img
src="./build/assets/cards-svg/tool-svgrepo-com.svg"
class="h-12 w-fit p-2 bg-clr-accent rounded-2xl group-hover:bg-clr-primary"
alt="Tools icon"
/>
<h3
class="text-xl font-bold text-clr-accent group-hover:text-clr-primary"
>
Innovative Financial Tools
</h3>
<p class="font-ff-secondary text-clr-light">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Voluptatum quos magnam ea ipsam repellat assumenda possimus. Unde,
quaerat.
</p>
</div>
<!-- Card 6 -->
<div
class="flex flex-col items-center p-4 gap-2 rounded-2xl bg-clr-primary duration-300 group hover:bg-clr-accent"
>
<img
src="./build/assets/cards-svg/networking-share-svgrepo-com.svg"
class="h-12 w-fit p-2 bg-clr-accent rounded-2xl group-hover:bg-clr-primary"
alt="Networking icon"
/>
<h3
class="text-xl font-bold text-clr-accent group-hover:text-clr-primary"
>
Community and Networking Opportunities
</h3>
<p class="font-ff-secondary text-clr-light">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Voluptatum quos magnam ea ipsam repellat assumenda possimus. Unde,
quaerat.
</p>
</div>
</div>
</div>
<!-- About -->
<div class="container mx-auto my-16" id="about">
<!-- Stats Container -->
<div
class="grid grid-cols-1 gap-12 mx-4 mb-4 md:grid-cols-2 lg:grid-cols-4"
>
<!-- Stat 1 -->
<div class="text-center">
<h1 class="text-5xl font-extrabold text-clr-accent">
<span id="contto1" countto="250">250</span>+
</h1>
<h3 class="font-ff-secondary">Hours Saved Sitting in the bank</h3>
</div>
<!-- Stat 2 -->
<div class="text-center">
<h1 class="text-5xl font-extrabold text-clr-accent">
<span id="countto2" countto="12">12</span>m
</h1>
<h3 class="font-ff-secondary">Credits Saved</h3>
</div>
<!-- Stat 3 -->
<div class="text-center">
<h1 class="text-5xl font-extrabold text-clr-accent">
<span id="countto3" countto="2600" data-decimal="1">2.8</span>k+
</h1>
<h3 class="font-ff-secondary">Global Partners</h3>
</div>
<!-- Stat 4 -->
<div class="text-center">
<h1 class="text-5xl font-extrabold text-clr-accent">
<span id="countto4" countto="18000">18,000</span>+
</h1>
<h3 class="font-ff-secondary">Happy Devs</h3>
</div>
</div>
<!-- Steps Section -->
<div class="grid grid-cols-1 gap-16 md:grid-cols-2">
<!-- Image -->
<div
class="bg-cover bg-center hidden md:block rounded-3xl"
style="
background-image: url(./build/assets/images/thomas-drouault-h7PJC8pvmHI-unsplash.jpg);
"
></div>
<div class="text-center md:text-left">
<h1 class="text-3xl font-extrabold text-clr-accent">
How Dev Works
</h1>
<p class="font-ff-secondary mx-4 mb-4 md:mx-0">
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Dolorum
ea minima nihil, id, voluptate quaerat officia debitis suscipit
porro ducimus aliquam modi laboriosam natus magnam.
</p>
<!-- Steps Container -->
<div class="grid grid-cols-1 gap-4 mx-4 md:mx-0 md:grid-cols-2">
<!-- Step 1 -->
<div class="bg-clr-primary rounded-2xl p-4">
<span
class="text-2xl px-2 rounded-full text-clr-light bg-clr-accent"
>1</span
>
<h2 class="text-xl font-bold text-clr-accent">
Vist Dev Bank Wepsite
</h2>
<p class="font-ff-secondary text-clr-light">
Go to Cache Bank, click "Sign Up" or "Open an Account."
</p>
</div>
<!-- Step 2 -->
<div class="bg-clr-accent rounded-2xl p-4">
<span
class="text-2xl px-2 rounded-full text-clr-light bg-clr-primary"
>2</span
>
<h2 class="text-xl font-bold">Choose Account Type</h2>
<p class="font-ff-secondary text-clr-light">
Select from checkings,savings, or developer-specific accounts.
</p>
</div>
<!-- Step 3 -->
<div class="bg-clr-accent rounded-2xl p-4">
<span
class="text-2xl px-2 rounded-full text-clr-light bg-clr-primary"
>3</span
>
<h2 class="text-xl font-bold">Provide Personal Information</h2>
<p class="font-ff-secondary text-clr-light">
Complete the form with your details and identification for
security.
</p>
</div>
<!-- Step 4 -->
<div class="bg-clr-primary rounded-2xl p-4">
<span
class="text-2xl px-2 rounded-full text-clr-light bg-clr-accent"
>4</span
>
<h2 class="text-xl font-bold text-clr-accent">
Verify and Submit
</h2>
<p class="font-ff-secondary text-clr-light">
Check your information, agree to terms, and submit for account
approval.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Contact -->
<div class="container mx-auto my-16" id="contact">
<!-- Contact Container -->
<div class="grid grid-cols-1 gap-12 mx-4 md:grid-cols-2 lg:grid-cols-3">
<!-- Card 1 -->
<div
class="flex flex-col items-center p-4 gap-2 rounded-2xl bg-clr-primary duration-300 group hover:bg-clr-accent"
>
<img
src="./build/assets/contact-svg/email-open-svgrepo-com.svg"
class="h-12 w-fit p-2 bg-clr-accent rounded-2xl group-hover:bg-clr-primary"
alt="Email icon"
/>
<h1
class="text-2xl font-bold text-clr-accent group-hover:text-clr-primary"
>
Email
</h1>
<p class="font-ff-secondary text-clr-light">Contact us at</p>
<a
class="text-lg font-bold text-clr-accent group-hover:text-clr-primary"
href="mailto:[email protected]"
>
</a>
</div>
<!-- Card 2 -->
<div
class="flex flex-col items-center p-4 gap-2 rounded-2xl bg-clr-primary duration-300 group hover:bg-clr-accent"
>
<img
src="./build/assets/contact-svg/phone-svgrepo-com.svg"
class="h-12 w-fit p-2 bg-clr-accent rounded-2xl group-hover:bg-clr-primary"
alt="Email icon"
/>
<h1
class="text-2xl font-bold text-clr-accent group-hover:text-clr-primary"
>
Phone
</h1>
<p class="font-ff-secondary text-clr-light">
Reach out to us by phone
</p>
<a
class="text-lg font-bold text-clr-accent group-hover:text-clr-primary"
href="tel: +999-999-9999"
>
+999-999-9999
</a>
</div>
<!-- Card 3 -->
<div
class="flex flex-col items-center p-4 gap-2 rounded-2xl bg-clr-primary duration-300 group hover:bg-clr-accent"
>
<img
src="./build/assets/contact-svg/pin-rounded-circle-620-svgrepo-com.svg"
class="h-12 w-fit p-2 bg-clr-accent rounded-2xl group-hover:bg-clr-primary"
alt="Email icon"
/>
<h1
class="text-2xl font-bold text-clr-accent group-hover:text-clr-primary"
>
Location
</h1>
<p class="font-ff-secondary text-clr-light">
Find us at our office
</p>
<a
class="text-lg font-bold text-clr-accent group-hover:text-clr-primary"
target="_blank"
rel="noopener noreferrer"
href="https://www.google.com/maps"
>
Dev Bank, Cape Town
</a>
</div>
</div>
</div>
</main>
<footer class="w-full bg-clr-primary">
<div
class="container mx-auto py-16 gap-4 flex flex-col items-center justify-center"
>
<!-- Socials -->
<div class="flex gap-8">
<!-- FaceBook -->
<a href="https://www.facebook.com/"
><img
src="./build/assets/footer-svg/facebook-176-svgrepo-com.svg"
class="h-8"
alt="FaceBook logo"
/></a>
<!-- Twitter/X -->
<a href="https://twitter.com/"
><img
src="./build/assets/footer-svg/twitter-154-svgrepo-com.svg"
class="h-8"
alt="Twitter/X logo"
/></a>
<!-- GitHub -->
<a href="https://github.com/"
><img
src="./build/assets/footer-svg/github-142-svgrepo-com.svg"
class="h-8"
alt="GitHub logo"
/></a>
<!-- Linked In -->
<a href="https://www.linkedin.com/"
><img
src="./build/assets/footer-svg/linkedin-linked-in-svgrepo-com.svg"
class="h-8"
alt="Linked In logo"
/></a>
<!-- Instagram -->
<a href="https://www.instagram.com/"
><img
src="./build/assets/footer-svg/instagram-svgrepo-com.svg"
class="h-8"
alt="Instagram logo"
/></a>
</div>
<h3 class="text-clr-accent font-bold">
2024 Dev Bank. All right reserved
</h3>
</div>
</footer>
<script>
document
.getElementById("mobile-menu-toggle")
.addEventListener("click", function () {
document.getElementById("mobile-menu").classList.toggle("hidden");
});
</script>
<script src="https://cdn.jsdelivr.net/gh/Loopple/loopple-public-assets@main/motion-tailwind/scripts/plugins/countup.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/Loopple/loopple-public-assets@main/motion-tailwind/scripts/countto.js"></script>
</body>
</html>