-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1207 lines (939 loc) · 43.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
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
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<!-- Mirrored from olili.ng/ by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 13 Aug 2022 16:35:36 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=utf-8" /><!-- /Added by HTTrack -->
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- SEO Meta description -->
<meta name="description" content="Olili Food Nig. Ltd. - Best Online Food Delivery Plug">
<meta name="keywords" content="OliliFood, Olili, Food, Food Delivery, Asaba, Restuarant, Food Vendor, Olili App">
<meta name="author" content="Olili Food Nig. Ltd.">
<!-- OG Meta Tags to improve the way the post looks when you share the page on LinkedIn, Facebook, Google+ -->
<meta property="og:site_name" content="Olili Food Nig. Ltd."/> <!-- website name -->
<meta property="og:site" content="index.html"/> <!-- website link -->
<meta property="og:title" content="Olili Food Nig. Ltd. - Online Food Delivery service you can trust"/> <!-- title shown in the actual shared post -->
<meta property="og:description" content="Olili Food Nig. Ltd. is a leading food delivery company with customer satifaction as its main focus."/> <!-- description shown in the actual shared post -->
<meta property="og:image" content="assets/img/olilifood.jpg"/> <!-- image link, make sure it's jpg -->
<meta property="og:url" content="index.html"/> <!-- where do you want your post to link to -->
<meta property="og:type" content="website"/>
<!-- Favicon -->
<link rel="shortcut icon" href="assets/favicon/favicon.png" type="image/x-icon" />
<!-- Map CSS -->
<link rel="stylesheet" href="../api.mapbox.com/mapbox-gl-js/v0.53.0/mapbox-gl.css" />
<!-- Libs CSS -->
<link rel="stylesheet" href="assets/css/libs.bundle.css" />
<!-- Theme CSS -->
<link rel="stylesheet" href="assets/css/theme.bundle.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-3XTPX5NVFQ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-3XTPX5NVFQ');
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-157818069-1">
</script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-157818069-1');
</script>
<!-- Title -->
<title>Welcome to Olili Food Nig. Ltd.</title>
</head>
<body>
<!-- NAVBAR -->
<nav class="navbar navbar-expand-lg navbar-light bg-white">
<div class="container">
<!-- Brand -->
<a class="navbar-brand" href="index-2.html">
<img src="assets/img/logo.png" class="navbar-brand-img" alt="...">
</a>
<!-- Toggler -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Collapse -->
<div class="collapse navbar-collapse" id="navbarCollapse">
<!-- Toggler -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<i class="fe fe-x"></i>
</button>
<!-- Navigation -->
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="index-2.html">
Home
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">
About Us
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="team.html">
Our Team
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">
Contact Us
</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="navbarDocumentation" data-bs-toggle="dropdown" href="#" aria-haspopup="true" aria-expanded="false">
External
</a>
<div class="dropdown-menu dropdown-menu-md" aria-labelledby="navbarDocumentation">
<div class="list-group list-group-flush">
<a class="list-group-item" href="https://careers.olili.ng/" target="_blank">
<!-- Icon -->
<div class="icon icon-sm olili-primary">
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h24v24H0z"/><path d="M8 3v.5A1.5 1.5 0 009.5 5h5A1.5 1.5 0 0016 3.5V3h2a2 2 0 012 2v16a2 2 0 01-2 2H6a2 2 0 01-2-2V5a2 2 0 012-2h2z" fill="#db4802" opacity=".3"/><path d="M11 2a1 1 0 012 0h1.5a.5.5 0 01.5.5v1a.5.5 0 01-.5.5h-5a.5.5 0 01-.5-.5v-1a.5.5 0 01.5-.5H11z" fill="#db4802"/><rect fill="#db4802" opacity=".3" x="7" y="10" width="5" height="2" rx="1"/><rect fill="#db4802" opacity=".3" x="7" y="14" width="9" height="2" rx="1"/></g></svg>
</div>
<!-- Content -->
<div class="ms-4">
<!-- Heading -->
<h6 class="fw-bold text-uppercase olili-secondary mb-0">
Careers
</h6>
<!-- Text -->
<p class="fs-sm text-gray-700 mb-0">
Work with Us
</p>
</div>
</a>
<a class="list-group-item" href="https://vendors.olili.ng/" target="_blank">
<!-- Icon -->
<div class="icon icon-sm olili-primary">
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h24v24H0z"/><rect fill="#db4802" x="4" y="4" width="7" height="7" rx="1.5"/><path d="M5.5 13h4a1.5 1.5 0 011.5 1.5v4A1.5 1.5 0 019.5 20h-4A1.5 1.5 0 014 18.5v-4A1.5 1.5 0 015.5 13zm9-9h4A1.5 1.5 0 0120 5.5v4a1.5 1.5 0 01-1.5 1.5h-4A1.5 1.5 0 0113 9.5v-4A1.5 1.5 0 0114.5 4zm0 9h4a1.5 1.5 0 011.5 1.5v4a1.5 1.5 0 01-1.5 1.5h-4a1.5 1.5 0 01-1.5-1.5v-4a1.5 1.5 0 011.5-1.5z" fill="#db4802" opacity=".3"/></g></svg> </div>
<!-- Content -->
<div class="ms-4">
<!-- Heading -->
<h6 class="fw-bold text-uppercase olili-secondary mb-0">
Vendors
</h6>
<!-- Text -->
<p class="fs-sm text-gray-700 mb-0">
Become a Vendor
</p>
</div>
</a>
</div>
</div>
</li>
</ul>
</div>
</div>
</nav>
<!-- WELCOME -->
<section class="pt-4 pt-md-11">
<div class="container">
<div class="row align-items-center">
<div class="overflow-hidden col-12 col-md-5 col-lg-6 order-md-2">
<div class="shape shape-blur-1 text-gray-200">
<svg viewBox="0 0 723 569" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M703.969 241.602l-.006-.003C716.081 262.97 723 287.677 723 314c0 68.917-47.425 126.757-111.42 142.665L246.7 556.937C226.465 564.729 204.481 569 181.5 569 81.26 569 0 487.74 0 387.5c0-34.256 9.49-66.296 25.985-93.633l-.016.008L141.512 77.548C162.753 33.305 207.123 2.273 258.951.12l.008-.12h251.04l.003.01c41.848.557 78.081 24.378 96.356 59.12l.001-.005 97.61 182.477z" fill="currentColor"></path></svg>
</div>
<!-- Image -->
<img src="assets/img/illustrations/olili-2.png" class="position-relative img-fluid mw-md-100 mw-lg-80 mb-6 mb-md-0" alt="..." data-aos="fade-up" data-aos-delay="100">
</div>
<div class="col-12 col-md-7 col-lg-6 order-md-1" data-aos="fade-up">
<!-- Heading -->
<h1 class="display-3 text-center text-md-start">
<span class="olili-primary">Hungry ?</span> Place An Order with <span class="olili-primary">OliliFOOD</span> <br>
</h1>
<!-- Text -->
<p class="lead text-center text-md-start text-muted mb-6 mb-lg-8">
Olili Food will deliver meals from your favorite restaurant to your doorstep in minutes without stressing you out.
</p>
<!-- Buttons -->
<div class="text-center text-md-start">
<a href="https://play.google.com/store/apps/details?id=ng.olili.olilifood" class="btn btn-dark shadow lift mr-3">
<img src="assets/img/icons/playstore.png" target="_blank">
<!-- <i class="fa fa-check"></i> -->
Download Android APP
</a>
<a href="https://apps.apple.com/us/app/olilifood/id1541213005" class="btn btn-black shadow lift me-1">
<img src="assets/img/icons/appstore.png" target="_blank"> Download IOS APP
</a>
</div>
</div>
</div> <!-- / .row -->
</div> <!-- / .container -->
</section>
<!-- SHAPE -->
<div class="position-relative mt-n8">
<div class="shape shape-bottom shape-fluid-x text-gray-100">
<svg viewBox="0 0 2880 480" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M2160 0C1440 240 720 240 720 240H0v240h2880V0h-720z" fill="currentColor"/></svg> </div>
</div>
<!-- FEATURES -->
<section class="py-8 py-md-11 border-bottom bg-gradient-light-white">
<div class="container">
<div class="row justify-content-center mt-3">
<div class="col-12 col-md-10 col-lg-8 text-center">
<!-- Heading -->
<h2 class="text-muted fw-bold">
Fast Delivery You Can Rely On.
</h2>
<!-- Text -->
<p class="fs-lg text-muted mb-7 mb-md-9">
Get Your food delivered within 30 minutes of placing order, yes!, swift delivery is our top most priority.
</p>
</div>
</div> <!-- / .row -->
<div class="row">
<div class="col-12 col-md-4" data-aos="fade-up" data-aos-delay="50">
<!-- Icon -->
<div class="icon text-primary text-center mb-3">
<img src="assets/img/illustrations/place-order.png" width="100px" height="100px">
</div>
<!-- Heading -->
<h3 class="text-center olili-primary">
Place Order
</h3>
<!-- Text -->
<p class="text-muted text-center mb-6 mb-md-0">
We partner with your favorite vendors to ensure you always get meals you desire.
</p>
</div>
<div class="col-12 col-md-4" data-aos="fade-up" data-aos-delay="50">
<!-- Icon -->
<div class="icon text-center text-primary mb-3">
<img src="assets/img/illustrations/pick-up.png" width="130px" height="100px">
</div>
<!-- Heading -->
<h3 class="text-center olili-primary">
We Pick Order
</h3>
<!-- Text -->
<p class="text-muted text-center mb-6 mb-md-0">
Once you have placed your order, our sales agent processes them and our rider promptly picks up the order.
</p>
</div>
<div class="col-12 col-md-4" data-aos="fade-up" data-aos-delay="100">
<!-- Icon -->
<div class="icon text-center text-primary mb-3">
<img src="assets/img/illustrations/deliver.png" width="130px" height="100px">
</div>
<!-- Heading -->
<h3 class="text-center olili-primary">
We Deliver
</h3>
<!-- Text -->
<p class="text-muted text-center mb-0">
Our rider will ensure to get to your location as fast as you placed your order.
</p>
</div>
</div> <!-- / .row -->
</div> <!-- / .container -->
</section>
<!-- SHAPE -->
<div class="position-relative mt-n8">
<div class="shape shape-bottom shape-fluid-x text-gray-100">
<svg viewBox="0 0 2880 480" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M2160 0C1440 240 720 240 720 240H0v240h2880V0h-720z" fill="currentColor"/></svg> </div>
</div>
<!-- ABOUT -->
<section class="pt-8 pt-md-11 bg-gradient-light-white border-bottom border-gray-100">
<div class="container">
<div class="row align-items-center justify-content-between mb-8 mb-md-10">
<div class="col-12 col-md-6 order-md-2" data-aos="fade-left">
<!-- Heading -->
<h2 class="fw-bold">
About Olili<span class="olili-primary">Food</span> <br>
<span class="olili-secondary">We are <span data-typed='{"strings": ["Swift.", "Customer Friendly.", "Indigenous."]}'></span></span>
</h2>
<style>
a:hover{
color: #db4802;
}
</style>
<!-- Text -->
<p class="fs-lg text-muted mb-6" style="text-align: justify;">
It's our mission to bring to your doorstep whatever meal you desire. Our app is loaded with the best food experiences in the world - Nigerian to Indian to Chinese from all your favorite food vendors. We are currently operational in Delta State with solid plans for expansion into other states of the country. Our App has also been painstainkingly built by a team of experienced developer not to stress out our customers while they search for meals they desire... <a href="about.html" style="hover : #db4802" class="olili-primary">Read More</a>
</p>
<!-- List -->
<div class="row pt-0 mt-0">
<h3 class="text-muted">OliliFood App Features</h3>
<div class="col-12 col-lg-6">
<!-- Item -->
<div class="d-flex">
<!-- Check -->
<div class="badge badge-rounded-circle bg-success-soft mt-1 me-4">
<i class="fe fe-check"></i>
</div>
<!-- Text -->
<p class="text-muted">
Easy to Use
</p>
</div>
<!-- Item -->
<div class="d-flex">
<!-- Check -->
<div class="badge badge-rounded-circle bg-success-soft mt-1 me-4">
<i class="fe fe-check"></i>
</div>
<p class="text-muted mb-lg-0">
Smart Order
</p>
</div>
</div>
<div class="col-12 col-lg-6 mb-6 mb-md-0">
<!-- Item -->
<div class="d-flex">
<!-- Check -->
<span class="badge badge-rounded-circle bg-success-soft mt-1 me-4">
<i class="fe fe-check"></i>
</span>
<!-- Text -->
<p class="text-muted">
Order Tracking
</p>
</div>
<!-- Item -->
<div class="d-flex">
<!-- Check -->
<div class="badge badge-rounded-circle bg-success-soft me-1 me-4">
<i class="fe fe-check"></i>
</div>
<!-- Text -->
<p class="text-muted mb-0">
Easy Funding
</p>
</div>
</div>
</div> <!-- / .row -->
</div>
<div class="col-12 col-md-6 col-lg-5 order-md-1" data-aos="fade-right">
<!-- Card -->
<div class="card shadow-light-lg lift lift-lg">
<!-- Image -->
<img src="assets/img/illustrations/image-o.png" alt="..." class="card-img-top">
<!-- Shape -->
<div class="position-relative">
<div class="shape shape-bottom shape-fluid-x text-white">
<svg viewBox="0 0 2880 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 48h2880V0h-720C1442.5 52 720 0 720 0H0v48z" fill="currentColor"/></svg> </div>
</div>
</div>
</div>
</div> <!-- / .row -->
</div> <!-- / .container -->
</section>
<!-- SHAPE -->
<div class="position-relative mt-n8">
<div class="shape shape-bottom shape-fluid-x text-gray-100">
<svg viewBox="0 0 2880 480" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M2160 0C1440 240 720 240 720 240H0v240h2880V0h-720z" fill="currentColor"/></svg> </div>
</div>
<!-- ORDER PROCESS -->
<section class="py-8 py-md-8 bg-gradient-light-white pt-8">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-md-10 col-lg-8 text-center">
<!-- Heading -->
<h2 class="text-muted">
The Order <span class="olili-primary">Process</span>
</h2>
<!-- Text -->
<p class="fs-lg text-muted mb-7 mb-md-9">
The Process of getting food to your doorstep is described below.
</p>
</div>
</div>
<!-- / .row -->
<div class="row gx-4">
<div class="col-12 col-lg-6 d-lg-flex mb-4">
<!-- Card -->
<div class="card shadow-light-lg overflow-hidden" data-aos="fade-up">
<div class="row">
<div class="col-md-4 position-relative">
<!-- Image -->
<img src="assets/img/illustrations/order1.png" class="d-block h-75 position-absolute right-0 mt-2 me-n4 lift" alt="...">
</div>
<div class="col-md-8">
<!-- Body -->
<div class="card-body py-7 py-md-9 text-center">
<!-- Heading -->
<h4 class="fw-bold">
Place Order
</h4>
<!-- Text -->
<p class="text-muted mb-0">
Browse through available restaurants to select and add your desired meals to cart.
</p>
</div>
</div>
</div> <!-- / .row -->
</div>
</div>
<div class="col-12 col-lg-6 d-lg-flex mb-4">
<!-- Card -->
<div class="card shadow-light-lg overflow-hidden text-center" data-aos="fade-up">
<div class="row">
<div class="col-md-8">
<!-- Body -->
<div class="card-body py-7 py-md-9">
<!-- Heading -->
<h4 class="fw-bold">
Order Confirmation
</h4>
<!-- Text -->
<p class="text-muted mb-0">
Our Sales agent receives, confirms and accept your order.
</p>
</div>
</div>
<div class="col-md-4">
<!-- Image -->
<img src="assets/img/illustrations/order2.png" class="h-75 position-absolute left-0 mt-2 lift" alt="...">
</div>
</div> <!-- / .row -->
</div>
</div>
</div> <!-- / .row -->
<!-- / .row -->
<div class="row gx-4">
<div class="col-12 col-lg-6 d-lg-flex mb-4">
<!-- Card -->
<div class="card shadow-light-lg overflow-hidden" data-aos="fade-up">
<div class="row">
<div class="col-md-4 position-relative">
<!-- Image -->
<img src="assets/img/illustrations/order3.png" class="h-75 position-absolute right-0 mt-2 me-n4 lift" alt="...">
</div>
<div class="col-md-8">
<!-- Body -->
<div class="card-body py-7 py-md-9 text-center">
<!-- Heading -->
<h4 class="fw-bold">
Vendor Prepares Order
</h4>
<!-- Text -->
<p class="text-muted mb-0">
Your Order is immediately proccessed by the vendor you ordered from
</p>
</div>
</div>
</div> <!-- / .row -->
</div>
</div>
<div class="col-12 col-lg-6 d-lg-flex mb-4">
<!-- Card -->
<div class="card shadow-light-lg overflow-hidden text-center" data-aos="fade-up">
<div class="row">
<div class="col-md-8">
<!-- Body -->
<div class="card-body py-7 py-md-9">
<!-- Heading -->
<h4 class="fw-bold">
Rider Picks Up
</h4>
<!-- Text -->
<p class="text-muted mb-0">
Our stand-by rider(s) picks up your order and begins the delivery process
</p>
</div>
</div>
<div class="col-md-4">
<!-- Image -->
<img src="assets/img/illustrations/order4.png" class="h-75 position-absolute left-0 mt-2 lift" alt="...">
</div>
</div> <!-- / .row -->
</div>
</div>
</div> <!-- / .row -->
<div class="row">
<div class="col-12">
<!-- Card -->
<div class="card shadow-light-lg overflow-hidden text-center text-lg-start" data-aos="fade-up">
<div class="row">
<div class="col-md-4 position-relative">
<!-- Image -->
<img src="assets/img/illustrations/order5.png" class="h-75 position-absolute right-0 mt-4 lift" alt="...">
</div>
<div class="col-md-8">
<!-- Body -->
<div class="card-body py-7 py-md-9">
<!-- Heading -->
<h4 class="fw-bold">
Order Complete
</h4>
<!-- Text -->
<p class="text-muted mb-0">
Your Order gets to your location, you will be requested to provide the unique PIN attached to your order for order completion.
</p>
</div>
</div>
</div> <!-- / .row -->
</div>
</div>
</div> <!-- / .row -->
</div> <!-- / .container -->
</section>
<!-- TESTIMONIALS -->
<section class="pt-2 pt-md-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-md-10 col-lg-8 text-center">
<!-- Heading -->
<h2>
Our customers are the best.
</h2>
<!-- Text -->
<p class="fs-lg text-muted mb-7 mb-md-9">
They brag for us, we love and appreciate every one of our customers, they are the real reason we are here. Some of the nice things they say...
</p>
</div>
</div> <!-- / .row -->
<div class="row">
<div class="col-12">
<!-- Card -->
<div class="card card-row shadow-light-lg mb-6">
<div class="row gx-0">
<div class="col-12 col-md-6">
<style>
.flickity-prev-next-button{
background-color: #db4802;
}
.flickity-prev-next-button:focus, .flickity-prev-next-button:hover{
background-color: #db4802;
}
</style>
<!-- Slider -->
<div class="card-img-slider" data-flickity='{"fade": true, "imagesLoaded": true, "pageDots": false, "prevNextButtons": false, "asNavFor": "#blogSlider", "draggable": false}'>
<a class="card-img-start w-100 bg-cover" style="background-image: url(assets/img/photos/ndudi.jpg);" href="#">
<!-- Image (placeholder) -->
<img src="assets/img/photos/ndudi.jpg" alt="..." class="img-fluid d-md-none invisible">
</a>
<a class="card-img-start w-100 bg-cover" style="background-image: url(assets/img/photos/favor.jpg);" href="#">
<!-- Image (placeholder) -->
<img src="assets/img/photos/favor.jpg" alt="..." class="img-fluid d-md-none invisible">
</a>
<a class="card-img-start w-100 bg-cover" style="background-image: url(assets/img/photos/blessing.jpg);" href="#">
<!-- Image (placeholder) -->
<img src="assets/img/photos/blessing.jpg" alt="..." class="img-fluid d-md-none invisible">
</a>
</div>
<!-- Shape -->
<div class="shape shape-end shape-fluid-y text-white d-none d-md-block">
<svg viewBox="0 0 112 690" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M116 0H51v172C76 384 0 517 0 517v173h116V0z" fill="currentColor"/></svg> </div>
</div>
<div class="col-12 col-md-6 position-md-static">
<!-- Slider -->
<div class="position-md-static" data-flickity='{"wrapAround": true, "pageDots": false, "adaptiveHeight": true}' id="blogSlider">
<div class="w-100">
<!-- Body -->
<div class="card-body">
<blockquote class="blockquote text-center mb-0">
<!-- Text -->
<p class="mb-5 mb-md-7">
OliliFood is a life saver, they always deliver.
</p>
<!-- Footer -->
<footer class="blockquote-footer">
<span class="h6 text-uppercase">Medificient</span>
</footer>
</blockquote>
</div>
</div>
<div class="w-100">
<!-- Body -->
<div class="card-body">
<blockquote class="blockquote text-center mb-0">
<!-- Text -->
<p class="mb-5 mb-md-7">
Though I had minor location on first order, it has been bliss from then. Thanks guys
</p>
<!-- Footer -->
<footer class="blockquote-footer">
<span class="h6 text-uppercase">Favor</span>
</footer>
</blockquote>
</div>
</div>
<div class="w-100">
<!-- Body -->
<div class="card-body">
<blockquote class="blockquote text-center mb-0">
<!-- Text -->
<p class="mb-5 mb-md-7">
I have never had issues with my orders, thumbs up guys, keep up the good work.
</p>
<!-- Footer -->
<footer class="blockquote-footer">
<span class="h6 text-uppercase">Blessing</span>
</footer>
</blockquote>
</div>
</div>
</div>
</div>
</div> <!-- / .row -->
</div>
</div>
</div> <!-- / .row -->
</div> <!-- / .container -->
</section>
<!-- SHAPE -->
<div class="position-relative mt-n8">
<div class="shape shape-bottom shape-fluid-x text-gray-200">
<svg viewBox="0 0 2880 480" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M2160 0C1440 240 720 240 720 240H0v240h2880V0h-720z" fill="currentColor"/></svg> </div>
</div>
<!-- STATS -->
<section class="pt-10 pt-md-10 bg-gray-200">
<div class="container">
<div class="row align-items-center">
<div class="col-12 col-md-5 col-lg-6 order-md-2">
<!-- Image -->
<img src="assets/img/illustrations/ep1.png" alt="..." class="img-fluid mb-6 mb-md-0">
</div>
<div class="col-12 col-md-7 col-lg-6 order-md-1">
<!-- Heading -->
<h2>
We are focused on Business <br>
<span class="olili-primary">Grow with us</span>.
</h2>
<!-- Text -->
<p class="fs-lg text-gray-700 mb-6">
Our business model is a simple flexible one. Our goal is to take out the complexity of food delivery, over the next few years, we will work to be available in the 36 states of the federation, servicing our ever increasing customer base. We are always working to serve you better.
</p>
<!-- Stats -->
<div class="d-flex">
<div class="pe-5">
<h3 class="mb-0">
<span data-countup='{"startVal": 0}' data-to="100" data-aos data-aos-id="countup:in"></span>%
</h3>
<p class="text-gray-700 mb-0">
Satisfaction
</p>
</div>
<div class="border-start border-gray-300"></div>
<div class="px-5">
<h3 class="mb-0">
<span data-countup='{"startVal": 0}' data-to="24" data-aos data-aos-id="countup:in"></span>/
<span data-countup='{"startVal": 0}' data-to="7" data-aos data-aos-id="countup:in"></span>
</h3>
<p class="text-gray-700 mb-0">
Support
</p>
</div>
<div class="border-start border-gray-300"></div>
<div class="ps-5">
<h3 class="mb-0">
<span data-countup='{"startVal": 0}' data-to="100" data-aos data-aos-id="countup:in"></span>%
</h3>
<p class="text-gray-700 mb-0">
Swiftness
</p>
</div>
</div>
</div>
</div> <!-- / .row -->
</div> <!-- / .container -->
</section>
<!-- BRANDS -->
<section class="py-6 py-md-8 border-bottom">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-md-10 col-lg-7 text-center">
<!-- Heading -->
<h2>
Vendors on Olili
</h2>
<!-- Text -->
<p class="fs-lg text-muted mb-7 mb-md-9">
Your favorite vendors are on OliliFood
</p>
</div>
</div> <!-- / .row -->
<div class="row align-items-center justify-content-center">
<div class="col-6 col-sm-4 col-md-2 mb-4 mb-md-0">
<!-- Brand -->
<div class="img-fluid text-gray-600 mb-2 mb-md-0">
<img src="assets/img/photos/cartege.jpg" style="width: 100px; height: 70px">
</div>
</div>
<div class="col-6 col-sm-4 col-md-2 mb-4 mb-md-0">
<!-- Brand -->
<div class="img-fluid text-gray-600 mb-2 mb-md-0">
<img src="assets/img/photos/iyara.jpg" style="width: 100px; height: 70px">
</div>
</div>
<div class="col-6 col-sm-4 col-md-2 mb-4 mb-md-0">
<!-- Brand -->
<div class="img-fluid text-gray-600 mb-2 mb-md-0">
<img src="assets/img/photos/qubes.jpg" style="width: 100px; height: 70px">
</div>
</div>
<div class="col-6 col-sm-4 col-md-2 mb-4 mb-md-0">
<!-- Brand -->
<div class="img-fluid text-gray-600 mb-2 mb-md-0">
<img src="assets/img/photos/mayz.jpg" style="width: 100px; height: 70px">
</div>
</div>
<div class="col-6 col-sm-4 col-md-2 mb-4 mb-md-0">
<!-- Brand -->
<div class="img-fluid text-gray-600 mb-2 mb-md-0">
<img src="assets/img/photos/seca.jpg" style="width: 100px; height: 80px">
</div>
</div>
<div class="col-6 col-sm-4 col-md-2 mb-4 mb-md-0">
<!-- Brand -->
<div class="img-fluid text-gray-600 mb-2 mb-md-0">
<img src="assets/img/photos/xo.png" style="width: 100px; height: 70px">
</div>
</div>
</div> <!-- / .row -->
</div> <!-- / .container -->
</section>
<!-- SHAPE -->
<div class="position-relative">
<div class="shape shape-bottom shape-fluid-x text-gray-900">
<svg viewBox="0 0 2880 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 48h2880V0h-720C1442.5 52 720 0 720 0H0v48z" fill="currentColor"/></svg> </div>
</div>
<!-- FAQ -->
<section class="pt-0 bg-dark">
<div class="container pt-8 pt-md-11">
<div class="row justify-content-center">
<div class="col-12 col-md-10 col-lg-8 text-center">
<!-- Badge -->
<span class="badge rounded-pill bg-gray-700-soft mb-4">
<span class="h6 fw-bold text-uppercase">Get started</span>
</span>
<!-- Heading -->
<h1 class="display-4 text-white">
How Do I get Started?
</h1>
<!-- Text -->
<p class="fs-lg text-muted mb-6 mb-md-8">
Getting started is easier than you think, follow the simple steps to quickly set up your account and start getting delicious meals delivered to you wherever you are.
</p>
</div>
</div> <!-- / .row -->
<div class="row">
<div class="col-12 col-md-6">
<!-- Item -->
<div class="d-flex">
<!-- Badge -->
<div class="badge badge-lg badge-rounded-circle" style="background-color: #05500B;">
<span>1</span>
</div>
<div class="ms-5">
<!-- Heading -->
<h4 class="text-white">
Download OliliFood App
</h4>
<!-- Text -->
<p class="text-muted mb-6 mb-md-8">
Quickly head to Appstore or Playstore, Search for OliliFood and download the Olilifood App
</p>
</div>
</div>
<!-- Item -->
<div class="d-flex">
<!-- Badge -->
<div class="badge badge-lg badge-rounded-circle" style="background-color: #05500B;">
<span>2</span>
</div>
<div class="ms-5">
<!-- Heading -->
<h4 class="text-white">
Set Up Account
</h4>
<!-- Text -->
<p class="text-muted mb-6 mb-md-0">
Once Downloaded, Set up/Create a free account, this involves 2 easy steps and usually takes less than 1 minute.
</p>
</div>
</div>
</div>
<div class="col-12 col-md-6">
<!-- Item -->
<div class="d-flex">
<!-- Badge -->
<div class="badge badge-lg badge-rounded-circle" style="background-color: #05500B;">
<span>3</span>
</div>
<div class="ms-5">
<!-- Heading -->
<h4 class="text-white">
Fund Account
</h4>
<!-- Text -->
<p class="text-muted mb-6 mb-md-8">
On successful set up, quickly head to profile to fund/top your account wallet using one of the provided funding methods.
</p>
</div>