-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
977 lines (899 loc) · 67.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Quality and Logistics Supply - IT Solutions </title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="keywords">
<meta content="" name="description">
<!-- Google Web Fonts -->
<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=Inter:wght@400;500;600&family=Saira:wght@500;600;700&display=swap" rel="stylesheet">
<!-- Icon Font Stylesheet -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.1/font/bootstrap-icons.css" rel="stylesheet">
<!-- Libraries Stylesheet -->
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<!-- Customized Bootstrap Stylesheet -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Template Stylesheet -->
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<!-- Spinner Start -->
<div id="spinner" class="show position-fixed translate-middle w-100 vh-100 top-50 start-50 d-flex align-items-center justify-content-center">
<div class="spinner-grow text-primary" role="status"></div>
</div>
<!-- Spinner End -->
<!-- Topbar Start -->
<div class="container-fluid bg-dark py-2 d-none d-md-flex">
<div class="container">
<div class="d-flex justify-content-between topbar">
<div class="top-info">
<small class="me-3 text-white-50"><a href="#"><i class="fas fa-map-marker-alt me-2 text-secondary"></i></a>5 Pike Street, Freetown</small>
<small class="me-3 text-white-50"><a href="#"><i class="fas fa-envelope me-2 text-secondary"></i></a>qualitylogistics.supply@yahoo.com</small>
</div>
<div id="note" class="text-secondary d-none d-xl-flex"><small>Note : We help you to solve all your Supply Chain, Services and all your ICT Solutions</small></div>
<div class="top-link">
<a href="https://www.facebook.com/share/VyXukAiJh2q9T3CQ/?mibextid=qi2Omg" class="bg-light nav-fill btn btn-sm-square rounded-circle"><i class="fab fa-facebook-f text-primary"></i></a>
<a href="" class="bg-light nav-fill btn btn-sm-square rounded-circle"><i class="fab fa-twitter text-primary"></i></a>
<a href="https://www.instagram.com/quality_logistics_supply?igsh=bnp6eDlkdjdkNXRn" class="bg-light nav-fill btn btn-sm-square rounded-circle"><i class="fab fa-instagram text-primary"></i></a>
<a href="" class="bg-light nav-fill btn btn-sm-square rounded-circle me-0"><i class="fab fa-linkedin-in text-primary"></i></a>
</div>
</div>
</div>
</div>
<!-- Topbar End -->
<!-- Navbar Start -->
<div class="container-fluid bg-primary">
<div class="container">
<nav class="navbar navbar-dark navbar-expand-lg py-0">
<a href="index.html" class="navbar-brand">
<h1 class="text-white fw-bold d-block">Quality and Logistcis Supply<span class="text-secondary"></span> </h1>
</a>
<button type="button" class="navbar-toggler me-0" data-bs-toggle="collapse" data-bs-target="#navbarCollapse">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse bg-transparent" id="navbarCollapse">
<div class="navbar-nav ms-auto mx-xl-auto p-0">
<a href="index.html" class="nav-item nav-link active text-secondary">Home</a>
<a href="about.html" class="nav-item nav-link">About</a>
<a href="team.html" class="nav-item nav-link">Team</a>
<a href="project.html" class="nav-item nav-link">Projects</a>
<a href="galary.html" class="nav-item nav-link">Galary</a>
<div class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-bs-toggle="dropdown">Service</a>
<div class="dropdown-menu rounded">
<a href="service.html" class="dropdown-item">Web Development and Data Analysis</a>
<a href="service.html" class="dropdown-item">Manage IT and CRM</a>
<a href="service.html" class="dropdown-item">CCTV Camera Installation</a>
<a href="service.html" class="dropdown-item">24/7 IT Support</a>
<a href="service.html" class="dropdown-item">Fleet Management Systems</a>
<a href="service.html" class="dropdown-item">Office Equipment and Supplies</a>
<a href="service.html" class="dropdown-item">LAN Network Infrastructure and Installation</a>
<a href="service.html" class="dropdown-item">Biometric and Phones Installation</a>
<a href="service.html" class="dropdown-item">Point of Sales and Fire Alarm Systems</a>
</div>
</div>
<a href="contact.html" class="nav-item nav-link">Contact</a>
</div>
</div>
<div class="d-none d-xl-flex flex-shirink-0">
<div id="phone-tada" class="d-flex align-items-center justify-content-center me-4">
<a href="" class="position-relative animated tada infinite">
<i class="fa fa-phone-alt text-white fa-2x"></i>
<div class="position-absolute" style="top: -7px; left: 20px;">
<span><i class="fa fa-comment-dots text-secondary"></i></span>
</div>
</a>
</div>
<div class="d-flex flex-column pe-4 border-end">
<span class="text-white-50">Have any questions?</span>
<span class="text-secondary">Call: +232 78 100-022</span>
</div>
</div>
</nav>
</div>
</div>
<!-- Navbar End -->
<!-- Carousel Start -->
<div class="container-fluid px-0">
<div id="carouselId" class="carousel slide" data-bs-ride="carousel">
<ol class="carousel-indicators">
<li data-bs-target="#carouselId" data-bs-slide-to="0" class="active" aria-current="true" aria-label="First slide"></li>
<li data-bs-target="#carouselId" data-bs-slide-to="1" aria-label="Second slide"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<img src="img/quality log1.jpg" class="img-fluid" alt="First slide">
<div class="carousel-caption">
<div class="container carousel-content">
<h6 class="text-secondary h4 animated fadeInUp">Best IT Solutions</h6>
<h1 class="text-white display-1 mb-4 animated fadeInRight">An Innovative IT Solutions Agency</h1>
<p class="mb-4 text-white fs-5 animated fadeInDown">At Quality and Logistics Supply, we maintain positive relationships to foster long term partnership.</p>
<a href="" class="me-2"><button type="button" class="px-4 py-sm-3 px-sm-5 btn btn-primary rounded-pill carousel-content-btn1 animated fadeInLeft">Read More</button></a>
<a href="contact.html" class="ms-2"><button type="button" class="px-4 py-sm-3 px-sm-5 btn btn-primary rounded-pill carousel-content-btn2 animated fadeInRight">Contact Us</button></a>
</div>
</div>
</div>
<div class="carousel-item">
<img src="img/quality log1.jpg" class="img-fluid" alt="Second slide">
<div class="carousel-caption">
<div class="container carousel-content">
<h6 class="text-secondary h4 animated fadeInUp">Best IT Solutions</h6>
<h1 class="text-white display-1 mb-4 animated fadeInLeft">Quality Digital Services You Really Need!</h1>
<p class="mb-4 text-white fs-5 animated fadeInDown">At Quality and Logistics Supply, we maintain positive relationships to foster long term partnership.</p>
<a href="" class="me-2"><button type="button" class="px-4 py-sm-3 px-sm-5 btn btn-primary rounded-pill carousel-content-btn1 animated fadeInLeft">Read More</button></a>
<a href="" class="ms-2"><button type="button" class="px-4 py-sm-3 px-sm-5 btn btn-primary rounded-pill carousel-content-btn2 animated fadeInRight">Contact Us</button></a>
</div>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselId" 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="#carouselId" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
<!-- Carousel End -->
<!-- About Start -->
<div class="container-fluid py-5 my-5">
<div class="container pt-5">
<div class="row g-5">
<div class="col-lg-5 col-md-6 col-sm-12 wow fadeIn" data-wow-delay=".3s">
<div class="h-100 position-relative">
<img src="img/med2 (2).jpg" class="img-fluid w-75 rounded" alt="" style="margin-bottom: 25%;">
<div class="position-absolute w-75" style="top: 25%; left: 25%;">
<img src="img/adama.jpg" class="img-fluid w-100 rounded" alt="">
</div>
</div>
</div>
<div class="col-lg-7 col-md-6 col-sm-12 wow fadeIn" data-wow-delay=".5s">
<h5 class="text-primary">About Us</h5>
<h2 class="mb-4">Quality and Logistics Supply is the best when it comes to Innovative IT Solutions</h2>
<p>Quality and Logistics Supply founded in 2012, is a leading logistics and supply company dedicated to providing comprehensive and efficient solutions for hospitality, transportation, warehousing, and distribution needs of businesses in Sierra Leone. With a focus on reliability, innovation, and customer satisfaction, we offer tailored logistics services to streamline supply chains and optimize operations. Quality Logistics has provided workforce solutions to customers in a variety of industries throughout its history. Our range of workforce solutions and geographic coverage has grown steadily over the years to match the needs of our customers....
At Quality Logistics Supply, our mission is to be the trusted partner for businesses in managing their logistics and supply chain challenges. We are committed to delivering superior, end-to-end solutions that enhance efficiency, reduce costs, and exceed customer expectations, all while maintaining the highest standards of professionalism and reliability.</p>
<p class="mb-4">Today, Quality and Logistics Supply’s expertise also spans an array of outsourcing and consulting solutions ranging from IT solutions to Hospitality and logistics solutions for our customers..... </p>
<p class="mb-4">Our Mission...</p>
<p class="mb-4">At Quality Logistics Supply, our mission is to be the trusted partner for businesses in managing their logistics and supply chain challenges. We are committed to delivering superior, end-to-end solutions that enhance efficiency, reduce costs, and exceed customer expectations, all while maintaining the highest standards of professionalism and reliability. </p>
<a href="" class="btn btn-secondary rounded-pill px-5 py-3 text-white">More Details</a>
</div>
</div>
</div>
</div>
<!-- About End -->
<!-- Services Start -->
<div class="container-fluid services py-5 mb-5">
<div class="container">
<div class="text-center mx-auto pb-5 wow fadeIn" data-wow-delay=".3s" style="max-width: 600px;">
<h5 class="text-primary">Our Services</h5>
<h1>Our services we offers</h1>
</div>
<div class="row g-5 services-inner">
<div class="col-md-6 col-lg-4 wow fadeIn" data-wow-delay=".3s">
<div class="services-item bg-light">
<div class="p-4 text-center services-content">
<div class="services-content-icon">
<h4 class="mb-3">Web Development and Data Analysis</h4>
<p class="mb-4">At Quality and Logistics Supply, we are Pro when it comes to web development which we focuses on creating and maintaining web-based platforms, while for data analysis we help you interpreting and leveraging data to make informed decisions. Integrating these fields can enhance the functionality and insights provided by web applications.</p>
<a href="" class="btn btn-secondary text-white px-5 py-3 rounded-pill">Read More</a>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 wow fadeIn" data-wow-delay=".5s">
<div class="services-item bg-light">
<div class="p-4 text-center services-content">
<div class="services-content-icon">
<h4 class="mb-3">CCTV Camera</h4>
<p class="mb-4">We are a proud expert when it also comes to CCTV cameras and it installations, which are widely used in various settings, from residential homes to large commercial properties, to enhance security and monitor activities.</p>
<a href="" class="btn btn-secondary text-white px-5 py-3 rounded-pill">Read More</a>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 wow fadeIn" data-wow-delay=".7s">
<div class="services-item bg-light">
<div class="p-4 text-center services-content">
<div class="services-content-icon">
<h4 class="mb-3">UI/UX Design and 24/7 IT Support</h4>
<p class="mb-4">We are expert when it points to UI/UX Design which it focuses on creating user-centered, visually appealing, and functional digital experiences, while at Quality and Logistics Supply, we provide 24/7 IT Support to ensures the reliability and smooth operation of IT systems of your businesses.</p>
<a href="" class="btn btn-secondary text-white px-5 py-3 rounded-pill">Read More</a>
</div>
</div>
</div>
</div>
<div class="row g-5 services-inner">
<div class="col-md-6 col-lg-4 wow fadeIn" data-wow-delay=".3s">
<div class="services-item bg-light">
<div class="p-4 text-center services-content">
<div class="services-content-icon">
<h4 class="mb-3">Manage IT and CRM</h4>
<p class="mb-4">We also help in managing your IT business which focuses on the infrastructure, security, and support of technology systems, while we also create and help manage your business CRM which is centered on managing and leveraging customer data to enhance relationships and business outcomes. Effective coordination between IT management and CRM functions is essential for optimizing technology use and delivering a superior customer experience.</p>
<a href="" class="btn btn-secondary text-white px-5 py-3 rounded-pill">Read More</a>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 wow fadeIn" data-wow-delay=".5s">
<div class="services-item bg-light">
<div class="p-4 text-center services-content">
<div class="services-content-icon">
<h4 class="mb-3">Fleet Management Systems</h4>
<p class="mb-4">We provide Fleet Management Systems which are essential tools for organizations with vehicle fleets, providing comprehensive solutions for tracking, maintaining, and optimizing fleet operations to enhance efficiency, reduce costs, and improve safety.</p>
<a href="" class="btn btn-secondary text-white px-5 py-3 rounded-pill">Read More</a>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 wow fadeIn" data-wow-delay=".7s">
<div class="services-item bg-light">
<div class="p-4 text-center services-content">
<div class="services-content-icon">
<h4 class="mb-3">Office Equipment and Supplies</h4>
<p class="mb-4">At Quality and Logistics Supply, we provide office equipment and supplies which comprises of funitures, computers, stationaries and many more, which are fundamental for maintaining an efficient and productive work environment. Proper selection, maintenance, and management of these items ensure that daily operations run smoothly and support the overall functionality of the office.</p>
<a href="" class="btn btn-secondary text-white px-5 py-3 rounded-pill">Read More</a>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 wow fadeIn" data-wow-delay=".3s">
<div class="services-item bg-light">
<div class="p-4 text-center services-content">
<div class="services-content-icon">
<h4 class="mb-3">LAN Network Infrastructure and Installation</h4>
<p class="mb-4">We are expert when it point out for creating LAN network infrastructure which involves careful planning, hardware installation, configuration, and ongoing management to ensure reliable and efficient network performance. Proper installation and maintenance are crucial for a well-functioning network that supports the organization’s communication and operational needs.</p>
<a href="" class="btn btn-secondary text-white px-5 py-3 rounded-pill">Read More</a>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 wow fadeIn" data-wow-delay=".5s">
<div class="services-item bg-light">
<div class="p-4 text-center services-content">
<div class="services-content-icon">
<h4 class="mb-3">Biometric and Phones Installation</h4>
<p class="mb-4">We install Biometric systems for your office or resident which uses unique physiological or behavioral characteristics (such as fingerprints, facial recognition, or iris scans) to verify identity and provide access control and in the other hand we also setup and install your office and resident Phone systems that include traditional landline systems, VoIP (Voice over Internet Protocol) systems, and mobile communication setups. Installation varies based on the type of phone system.</p>
<a href="" class="btn btn-secondary text-white px-5 py-3 rounded-pill">Read More</a>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 wow fadeIn" data-wow-delay=".7s">
<div class="services-item bg-light">
<div class="p-4 text-center services-content">
<div class="services-content-icon">
<h4 class="mb-3">Point of Sales and Fire Alarm Systems</h4>
<p class="mb-4">We develop and install POS systems for your office, restaurant and other business center which are used to complete sales transactions, manage inventory, and track sales data in retail environments, restaurants, and other businesses and the other hand we also install and setup Fire alarms systems that detect and alert occupants to the presence of smoke, fire, or heat, helping to ensure safety and facilitate timely evacuation.</p>
<a href="" class="btn btn-secondary text-white px-5 py-3 rounded-pill">Read More</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Services End -->
<!-- Project Start -->
<div class="container-fluid project py-5 mb-5">
<div class="container">
<div class="text-center mx-auto pb-5 wow fadeIn" data-wow-delay=".3s" style="max-width: 600px;">
<h5 class="text-primary">Our Project</h5>
<h1>Our Recently Completed Projects</h1>
</div>
<div class="row g-5">
<div class="col-md-6 col-lg-4 wow fadeIn" data-wow-delay=".3s">
<div class="project-item">
<div class="project-img">
<img src="img/project-1.jpg" class="img-fluid w-100 rounded" alt="">
<div class="project-content">
<a href="#" class="text-center">
<h4 class="text-secondary">Web design</h4>
<p class="m-0 text-white">Web Analysis</p>
</a>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 wow fadeIn" data-wow-delay=".5s">
<div class="project-item">
<div class="project-img">
<img src="img/cctv.jpg" class="img-fluid w-100 rounded" alt="">
<div class="project-content">
<a href="#" class="text-center">
<h4 class="text-secondary">CCTV Camera </h4>
<p class="m-0 text-white">Camera Installations and Maintainance</p>
</a>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 wow fadeIn" data-wow-delay=".7s">
<div class="project-item">
<div class="project-img">
<img src="img/project-3.jpg" class="img-fluid w-100 rounded" alt="">
<div class="project-content">
<a href="#" class="text-center">
<h4 class="text-secondary">Office Equipment and Supplies</h4>
<p class="m-0 text-white">Supplies of office equipment </p>
</a>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 wow fadeIn" data-wow-delay=".3s">
<div class="project-item">
<div class="project-img">
<img src="img/lann.jpg" class="img-fluid w-100 rounded" alt="">
<div class="project-content">
<a href="#" class="text-center">
<h4 class="text-secondary">LAN Network Infrastructure</h4>
<p class="m-0 text-white">Setting up the infrastructure and installations</p>
</a>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 wow fadeIn" data-wow-delay=".5s">
<div class="project-item">
<div class="project-img">
<img src="img/biometricc.jpg" class="img-fluid w-100 rounded" alt="">
<div class="project-content">
<a href="#" class="text-center">
<h4 class="text-secondary">Biometric and Phones Installation</h4>
<p class="m-0 text-white">Biometric and Phones Installation</p>
</a>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 wow fadeIn" data-wow-delay=".7s">
<div class="project-item">
<div class="project-img">
<img src="img/project-6.jpg" class="img-fluid w-100 rounded" alt="">
<div class="project-content">
<a href="#" class="text-center">
<h4 class="text-secondary">CRM and Data Analysis</h4>
<p class="m-0 text-white">Visual Dashboard</p>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Project End -->
<!-- Blog Start -->
<div class="container-fluid blog py-5 mb-5">
<div class="container">
<div class="text-center mx-auto pb-5 wow fadeIn" data-wow-delay=".3s" style="max-width: 600px;">
<h5 class="text-primary">Our Blog</h5>
<h1>Latest Blog & News</h1>
</div>
<div class="row g-5 justify-content-center">
<div class="col-lg-6 col-xl-4 wow fadeIn" data-wow-delay=".3s">
<div class="blog-item position-relative bg-light rounded">
<img src="img/web1.jpg" class="img-fluid w-100 rounded-top" alt="">
<span class="position-absolute px-4 py-3 bg-primary text-white rounded" style="top: -28px; right: 20px;">Web Design and development</span>
<div class="blog-btn d-flex justify-content-between position-relative px-3" style="margin-top: -75px;">
<div class="blog-icon btn btn-secondary px-3 rounded-pill my-auto">
<a href="" class="btn text-white">Read More</a>
</div>
<div class="blog-btn-icon btn btn-secondary px-4 py-3 rounded-pill ">
<div class="blog-icon-1">
<p class="text-white px-2">Share<i class="fa fa-arrow-right ms-3"></i></p>
</div>
<div class="blog-icon-2">
<a href="" class="btn me-1"><i class="fab fa-facebook-f text-white"></i></a>
<a href="" class="btn me-1"><i class="fab fa-twitter text-white"></i></a>
<a href="" class="btn me-1"><i class="fab fa-instagram text-white"></i></a>
</div>
</div>
</div>
<div class="blog-content text-center position-relative px-3" style="margin-top: -25px;">
<img src="img/bah112.jpg" class="img-fluid rounded-circle border border-4 border-white mb-3" alt="">
<h5 class="">By Osman Sullayman Bah</h5>
<span class="text-secondary">24 March 2023</span>
<p class="py-2">Lorem ipsum dolor sit amet elit. Sed efficitur quis purus ut interdum. Aliquam dolor eget urna ultricies tincidunt libero sit amet</p>
</div>
<div class="blog-coment d-flex justify-content-between px-4 py-2 border bg-primary rounded-bottom">
<a href="" class="text-white"><small><i class="fas fa-share me-2 text-secondary"></i>50 Share</small></a>
<a href="" class="text-white"><small><i class="fa fa-comments me-2 text-secondary"></i>5 Comments</small></a>
</div>
</div>
</div>
<div class="col-lg-6 col-xl-4 wow fadeIn" data-wow-delay=".5s">
<div class="blog-item position-relative bg-light rounded">
<img src="img/cctv.jpg" class="img-fluid w-100 rounded-top" alt="">
<span class="position-absolute px-4 py-3 bg-primary text-white rounded" style="top: -28px; right: 20px;">CCTV Camera</span>
<div class="blog-btn d-flex justify-content-between position-relative px-3" style="margin-top: -75px;">
<div class="blog-icon btn btn-secondary px-3 rounded-pill my-auto">
<a href="" class="btn text-white ">Read More</a>
</div>
<div class="blog-btn-icon btn btn-secondary px-4 py-3 rounded-pill ">
<div class="blog-icon-1">
<p class="text-white px-2">Share<i class="fa fa-arrow-right ms-3"></i></p>
</div>
<div class="blog-icon-2">
<a href="" class="btn me-1"><i class="fab fa-facebook-f text-white"></i></a>
<a href="" class="btn me-1"><i class="fab fa-twitter text-white"></i></a>
<a href="" class="btn me-1"><i class="fab fa-instagram text-white"></i></a>
</div>
</div>
</div>
<div class="blog-content text-center position-relative px-3" style="margin-top: -25px;">
<img src="img/konteh.jpg" class="img-fluid rounded-circle border border-4 border-white mb-3" alt="">
<h5 class="">By Umaru Borborh Konteh</h5>
<span class="text-secondary">23 August 2024</span>
<p class="py-2">Lorem ipsum dolor sit amet elit. Sed efficitur quis purus ut interdum. Aliquam dolor eget urna ultricies tincidunt libero sit amet</p>
</div>
<div class="blog-coment d-flex justify-content-between px-4 py-2 border bg-primary rounded-bottom">
<a href="" class="text-white"><small><i class="fas fa-share me-2 text-secondary"></i>40 Share</small></a>
<a href="" class="text-white"><small><i class="fa fa-comments me-2 text-secondary"></i>3 Comments</small></a>
</div>
</div>
</div>
<div class="col-lg-6 col-xl-4 wow fadeIn" data-wow-delay=".7s">
<div class="blog-item position-relative bg-light rounded">
<img src="img/net.jpg" class="img-fluid w-100 rounded-top" alt="">
<span class="position-absolute px-4 py-3 bg-primary text-white rounded" style="top: -28px; right: 20px;">LAN Network Infrastructure</span>
<div class="blog-btn d-flex justify-content-between position-relative px-3" style="margin-top: -75px;">
<div class="blog-icon btn btn-secondary px-3 rounded-pill my-auto">
<a href="" class="btn text-white ">Read More</a>
</div>
<div class="blog-btn-icon btn btn-secondary px-4 py-3 rounded-pill ">
<div class="blog-icon-1">
<p class="text-white px-2">Share<i class="fa fa-arrow-right ms-3"></i></p>
</div>
<div class="blog-icon-2">
<a href="" class="btn me-1"><i class="fab fa-facebook-f text-white"></i></a>
<a href="" class="btn me-1"><i class="fab fa-twitter text-white"></i></a>
<a href="" class="btn me-1"><i class="fab fa-instagram text-white"></i></a>
</div>
</div>
</div>
<div class="blog-content text-center position-relative px-3" style="margin-top: -25px;">
<img src="img/alie.jpg" class="img-fluid rounded-circle border border-4 border-white mb-3" alt="">
<h5 class="">By Alie</h5>
<span class="text-secondary">30 jan 2023</span>
<p class="py-2">Lorem ipsum dolor sit amet elit. Sed efficitur quis purus ut interdum. Aliquam dolor eget urna ultricies tincidunt libero sit amet</p>
</div>
<div class="blog-coments d-flex justify-content-between px-4 py-2 border bg-primary rounded-bottom">
<a href="" class="text-white"><small><i class="fas fa-share me-2 text-secondary"></i>20 Share</small></a>
<a href="" class="text-white"><small><i class="fa fa-comments me-2 text-secondary"></i>2 Comments</small></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Blog End -->
<!-- Team Start -->
<div class="container-fluid py-5 mb-5 team">
<div class="container">
<div class="text-center mx-auto pb-5 wow fadeIn" data-wow-delay=".3s" style="max-width: 600px;">
<h5 class="text-primary">Our Team</h5>
<h1>Meet our expert Team</h1>
</div>
<div class="owl-carousel team-carousel wow fadeIn" data-wow-delay=".5s">
<div class="rounded team-item">
<div class="team-content">
<div class="team-img-icon">
<div class="team-img rounded-circle">
<img src="img/baindu.jpg" class="img-fluid w-100 rounded-circle" alt="">
</div>
<div class="team-name text-center py-3">
<h4 class="">Mrs. Baindu Norman</h4>
<p class="m-0">CEO</p>
</div>
<div class="team-icon d-flex justify-content-center pb-4">
<a class="btn btn-square btn-secondary text-white rounded-circle m-1" href=""><i class="fab fa-facebook-f"></i></a>
<a class="btn btn-square btn-secondary text-white rounded-circle m-1" href=""><i class="fab fa-twitter"></i></a>
<a class="btn btn-square btn-secondary text-white rounded-circle m-1" href=""><i class="fab fa-instagram"></i></a>
<a class="btn btn-square btn-secondary text-white rounded-circle m-1" href=""><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
</div>
<div class="rounded team-item">
<div class="team-content">
<div class="team-img-icon">
<div class="team-img rounded-circle">
<img src="img/norman2.jpg" class="img-fluid w-100 rounded-circle" alt="">
</div>
<div class="team-name text-center py-3">
<h4 class="">Emmanuel Aaron Senesie Norman</h4>
<p class="m-0">Director General</p>
</div>
<div class="team-icon d-flex justify-content-center pb-4">
<a class="btn btn-square btn-secondary text-white rounded-circle m-1" href=""><i class="fab fa-facebook-f"></i></a>
<a class="btn btn-square btn-secondary text-white rounded-circle m-1" href=""><i class="fab fa-twitter"></i></a>
<a class="btn btn-square btn-secondary text-white rounded-circle m-1" href=""><i class="fab fa-instagram"></i></a>
<a class="btn btn-square btn-secondary text-white rounded-circle m-1" href=""><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
</div>
<div class="rounded team-item">
<div class="team-content">
<div class="team-img-icon">
<div class="team-img rounded-circle">
<img src="img/tp.jpg" class="img-fluid w-100 rounded-circle" alt="">
</div>
<div class="team-name text-center py-3">
<h4 class="">Osman Sullayman Bah</h4>
<p class="m-0">Marketing Manager</p>
</div>
<div class="team-icon d-flex justify-content-center pb-4">
<a class="btn btn-square btn-secondary text-white rounded-circle m-1" href=""><i class="fab fa-facebook-f"></i></a>
<a class="btn btn-square btn-secondary text-white rounded-circle m-1" href=""><i class="fab fa-twitter"></i></a>
<a class="btn btn-square btn-secondary text-white rounded-circle m-1" href=""><i class="fab fa-instagram"></i></a>
<a class="btn btn-square btn-secondary text-white rounded-circle m-1" href=""><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
</div>
<div class="rounded team-item">
<div class="team-content">
<div class="team-img-icon">
<div class="team-img rounded-circle">
<img src="img/conteh.jpg" class="img-fluid w-100 rounded-circle" alt="">
</div>
<div class="team-name text-center py-3">
<h4 class="">Umaru Borborh Konteh</h4>
<p class="m-0">Senior Technician 1</p>
</div>
<div class="team-icon d-flex justify-content-center pb-4">
<a class="btn btn-square btn-secondary text-white rounded-circle m-1" href=""><i class="fab fa-facebook-f"></i></a>
<a class="btn btn-square btn-secondary text-white rounded-circle m-1" href=""><i class="fab fa-twitter"></i></a>
<a class="btn btn-square btn-secondary text-white rounded-circle m-1" href=""><i class="fab fa-instagram"></i></a>
<a class="btn btn-square btn-secondary text-white rounded-circle m-1" href=""><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="owl-carousel team-carousel wow fadeIn" data-wow-delay=".2s">
<div class="rounded team-item">
<div class="team-content">
<div class="team-img-icon">
<div class="team-img rounded-circle">
<img src="img/baindu.jpg" class="img-fluid w-100 rounded-circle" alt="">
</div>
<div class="team-name text-center py-3">
<h4 class=""> Baindu </h4>
<p class="m-0">CEO</p>
</div>
<div class="team-icon d-flex justify-content-center pb-4">
<a class="btn btn-square btn-secondary text-white rounded-circle m-1" href=""><i class="fab fa-facebook-f"></i></a>
<a class="btn btn-square btn-secondary text-white rounded-circle m-1" href=""><i class="fab fa-twitter"></i></a>
<a class="btn btn-square btn-secondary text-white rounded-circle m-1" href=""><i class="fab fa-instagram"></i></a>
<a class="btn btn-square btn-secondary text-white rounded-circle m-1" href=""><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
</div>
<div class="rounded team-item">
<div class="team-content">
<div class="team-img-icon">
<div class="team-img rounded-circle">
<img src="img/norman2.jpg" class="img-fluid w-100 rounded-circle" alt="">
</div>
<div class="team-name text-center py-3">
<h4 class="">Emmanuel</h4>
<p class="m-0">Director </p>
</div>
<div class="team-icon d-flex justify-content-center pb-4">
<a class="btn btn-square btn-secondary text-white rounded-circle m-1" href=""><i class="fab fa-facebook-f"></i></a>
<a class="btn btn-square btn-secondary text-white rounded-circle m-1" href=""><i class="fab fa-twitter"></i></a>
<a class="btn btn-square btn-secondary text-white rounded-circle m-1" href=""><i class="fab fa-instagram"></i></a>
<a class="btn btn-square btn-secondary text-white rounded-circle m-1" href=""><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
</div>
<div class="rounded team-item">
<div class="team-content">
<div class="team-img-icon">
<div class="team-img rounded-circle">
<img src="img/tp.jpg" class="img-fluid w-100 rounded-circle" alt="">
</div>
<div class="team-name text-center py-3">
<h4 class="">Osman</h4>
<p class="m-0"> Manager</p>
</div>
<div class="team-icon d-flex justify-content-center pb-4">
<a class="btn btn-square btn-secondary text-white rounded-circle m-1" href=""><i class="fab fa-facebook-f"></i></a>
<a class="btn btn-square btn-secondary text-white rounded-circle m-1" href=""><i class="fab fa-twitter"></i></a>
<a class="btn btn-square btn-secondary text-white rounded-circle m-1" href=""><i class="fab fa-instagram"></i></a>
<a class="btn btn-square btn-secondary text-white rounded-circle m-1" href=""><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
</div>
<div class="rounded team-item">
<div class="team-content">
<div class="team-img-icon">
<div class="team-img rounded-circle">
<img src="img/team-4.jpg" class="img-fluid w-100 rounded-circle" alt="">
</div>
<div class="team-name text-center py-3">
<h4 class="">Full Name</h4>
<p class="m-0">Designation</p>
</div>
<div class="team-icon d-flex justify-content-center pb-4">
<a class="btn btn-square btn-secondary text-white rounded-circle m-1" href=""><i class="fab fa-facebook-f"></i></a>
<a class="btn btn-square btn-secondary text-white rounded-circle m-1" href=""><i class="fab fa-twitter"></i></a>
<a class="btn btn-square btn-secondary text-white rounded-circle m-1" href=""><i class="fab fa-instagram"></i></a>
<a class="btn btn-square btn-secondary text-white rounded-circle m-1" href=""><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Team End -->
<!-- Testimonial Start -->
<div class="container-fluid testimonial py-5 mb-5">
<div class="container">
<div class="text-center mx-auto pb-5 wow fadeIn" data-wow-delay=".3s" style="max-width: 600px;">
<h5 class="text-primary">Our Testimonial</h5>
<h1>Our Client Saying!</h1>
</div>
<div class="owl-carousel testimonial-carousel wow fadeIn" data-wow-delay=".5s">
<div class="testimonial-item border p-4">
<div class="d-flex align-items-center">
<div class="">
<img src="img/testimonial-1.jpg" alt="">
</div>
<div class="ms-4">
<h4 class="text-secondary">Alimamy Kamara (CONEX ENERGY SL LTD)</h4>
<p class="m-0 pb-3">Information Systems Manager</p>
<div class="d-flex pe-5">
<i class="fas fa-star me-1 text-primary"></i>
<i class="fas fa-star me-1 text-primary"></i>
<i class="fas fa-star me-1 text-primary"></i>
<i class="fas fa-star me-1 text-primary"></i>
<i class="fas fa-star me-1 text-primary"></i>
</div>
</div>
</div>
<div class="border-top mt-4 pt-3">
<p class="mb-0">Quality and Logistics Supply is the best when it comes to service delivery and they have a good work ethics and conduct along with proffessionals.</p>
</div>
</div>
<div class="testimonial-item border p-4">
<div class=" d-flex align-items-center">
<div class="">
<img src="img/testimonial-2.jpg" alt="">
</div>
<div class="ms-4">
<h4 class="text-secondary">Kai</h4>
<p class="m-0 pb-3">Procurement Manager (NCC SL LTD)</p>
<div class="d-flex pe-5">
<i class="fas fa-star me-1 text-primary"></i>
<i class="fas fa-star me-1 text-primary"></i>
<i class="fas fa-star me-1 text-primary"></i>
<i class="fas fa-star me-1 text-primary"></i>
<i class="fas fa-star me-1 text-primary"></i>
</div>
</div>
</div>
<div class="border-top mt-4 pt-3">
<p class="mb-0">Quality and Logistics SUpply provides you with the utmost best of service paid for and they are very reasonable when it comes to price factor compared to others.</p>
</div>
</div>
<div class="testimonial-item border p-4">
<div class=" d-flex align-items-center">
<div class="">
<img src="img/testimonial-3.jpg" alt="">
</div>
<div class="ms-4">
<h4 class="text-secondary">Emmanuel Norman (UNFPA SL)</h4>
<p class="m-0 pb-3">Procurement Manager</p>
<div class="d-flex pe-5">
<i class="fas fa-star me-1 text-primary"></i>
<i class="fas fa-star me-1 text-primary"></i>
<i class="fas fa-star me-1 text-primary"></i>
<i class="fas fa-star me-1 text-primary"></i>
<i class="fas fa-star me-1 text-primary"></i>
</div>
</div>
</div>
<div class="border-top mt-4 pt-3">
<p class="mb-0">You gotta choose Quality and Logistics if you want the best IT Solutions and sevice delivery is a top notch.</p>
</div>
</div>
<div class="testimonial-item border p-4">
<div class=" d-flex align-items-center">
<div class="">
<img src="img/testimonial-4.jpg" alt="">
</div>
<div class="ms-4">
<h4 class="text-secondary">Foday (IPHAU SL)</h4>
<p class="m-0 pb-3">Procurement Manager</p>
<div class="d-flex pe-5">
<i class="fas fa-star me-1 text-primary"></i>
<i class="fas fa-star me-1 text-primary"></i>
<i class="fas fa-star me-1 text-primary"></i>
<i class="fas fa-star me-1 text-primary"></i>
<i class="fas fa-star me-1 text-primary"></i>
</div>
</div>
</div>
<div class="border-top mt-4 pt-3">
<p class="mb-0">They are very proffessional and optimistics to provide you with the best IT Solutions and works very friendly with clients to make sure services are provided on time and in a good manner.</p>
</div>
</div>
</div>
</div>
</div>
<!-- Testimonial End -->
<!-- Contact Start -->
<div class="container-fluid py-5 mb-5">
<div class="container">
<div class="text-center mx-auto pb-5 wow fadeIn" data-wow-delay=".3s" style="max-width: 600px;">
<h5 class="text-primary">Get In Touch</h5>
</div>
<form action="https://formsubmit.co/osmansullaymanbah@gmail.com" method="POST">
<div class="contact-detail position-relative p-5">
<div class="row g-5 mb-5 justify-content-center">
<div class="col-xl-4 col-lg-6 wow fadeIn" data-wow-delay=".3s">
<div class="d-flex bg-light p-3 rounded">
<div class="flex-shrink-0 btn-square bg-secondary rounded-circle" style="width: 64px; height: 64px;">
<i class="fas fa-map-marker-alt text-white"></i>
</div>
<div class="ms-3">
<h4 class="text-primary">Address</h4>
<a href="https://goo.gl/maps/Zd4BCynmTb98ivUJ6" target="_blank" class="h5">5 Pike Street, Freetown Sierra Leone</a>
</div>
</div>
</div>
<div class="col-xl-4 col-lg-6 wow fadeIn" data-wow-delay=".5s">
<div class="d-flex bg-light p-3 rounded">
<div class="flex-shrink-0 btn-square bg-secondary rounded-circle" style="width: 64px; height: 64px;">
<i class="fa fa-phone text-white"></i>
</div>
<div class="ms-3">
<h4 class="text-primary">Call Us</h4>
<a class="h5" href="tel:+0123456789" target="_blank">+232 78 100 022</a>
</div>
</div>
</div>
<div class="col-xl-4 col-lg-6 wow fadeIn" data-wow-delay=".7s">
<div class="d-flex bg-light p-3 rounded">
<div class="flex-shrink-0 btn-square bg-secondary rounded-circle" style="width: 64px; height: 64px;">
<i class="fa fa-envelope text-white"></i>
</div>
<div class="ms-3">
<h4 class="text-primary">Email Us</h4>
<a class="h5" href="qualitylogistics.supply.yahoo.com" target="_blank">qualitylogistics.supply.
yahoo.com</a>
</div>
</div>
</div>
</div>
<div class="row g-5">
<div class="col-lg-6 wow fadeIn" data-wow-delay=".3s">
<div class="p-5 h-100 rounded contact-map">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3946.243831260898!2d-13.24207372525282!3d8.475655091565233!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0xf04c30a70fabebf%3A0xf786f02703e83f72!2s5%20Pike%20St%2C%20Freetown!5e0!3m2!1sen!2ssl!4v1724745961435!5m2!1sen!2ssl" width="400" height="300" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
</div>
<form action="https://formsubmit.co/osmansullaymanbah@gmail.com" method="POST" />
<div class="col-lg-6 wow fadeIn" data-wow-delay=".">
<div class="p-5 rounded contact-form">
<div class="mb-4">
<input type="text" class="form-control border-0 py-3" name="Name" id="name"placeholder="Your Name">
</div>
<div class="mb-4">
<input type="email" class="form-control border-0 py-3" name="Email" id="email"placeholder="Your Email">
</div>
<div class="mb-4">
<input type="text" class="form-control border-0 py-3"name="Subject" id="subject" placeholder="Subject">
</div>
<div class="mb-4">
<input type="text" class="form-control border-0 py-3"name="Phone Number" id="subject" placeholder="Your Phone Number">
</div>
<div class="mb-4">
<input type="text" class="form-control border-0 py-3"name="Country" id="subject" placeholder="Your Country">
</div>
<div class="mb-4">
<input type="text" class="form-control border-0 py-3"name="City" id="subject" placeholder="Your City ">
</div>
<div class="mb-4">
<textarea class="w-100 form-control border-0 py-3" rows="6" cols="10" name="Message" id="message"placeholder="Message"></textarea>
</div>
<input type="hidden" name="_template" value="table">
<input type="hidden" name="_next" value="https://osmansbah.github.io/osman/thanksyou.html">
<input type="hidden" name="_cc" value="qualitylogistics.supply@yahoo.com">
<input type="hidden" name="_cc" value="osmansbah005@gmail.com">
<input type="hidden" name="_captcha" value="false">
<div class="text-start">
<button class="btn bg-primary text-white py-3 px-5" type="submit">Send Message</button>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</form>
<!-- Contact End -->
<!-- Footer Start -->
<div class="container-fluid footer bg-dark wow fadeIn" data-wow-delay=".3s">
<div class="container pt-5 pb-4">
<div class="row g-5">
<div class="col-lg-3 col-md-6">
<a href="index.html">
<h1 class="text-white fw-bold d-block">Quality and Logistics Supply<span class="text-secondary"></span> </h1>
</a>
<p class="mt-4 text-light">Quality and Logistics Supply is an ICT Solution Company that thrive .</p>
<div class="d-flex hightech-link">
<a href="" class="btn-light nav-fill btn btn-square rounded-circle me-2"><i class="fab fa-facebook-f text-primary"></i></a>
<a href="" class="btn-light nav-fill btn btn-square rounded-circle me-2"><i class="fab fa-twitter text-primary"></i></a>
<a href="" class="btn-light nav-fill btn btn-square rounded-circle me-2"><i class="fab fa-instagram text-primary"></i></a>
<a href="" class="btn-light nav-fill btn btn-square rounded-circle me-0"><i class="fab fa-linkedin-in text-primary"></i></a>
</div>
</div>
<div class="col-lg-3 col-md-6">
<a href="#" class="h3 text-secondary">Short Link</a>
<div class="mt-4 d-flex flex-column short-link">
<a href="about.html" class="mb-2 text-white"><i class="fas fa-angle-right text-secondary me-2"></i>About us</a>
<a href="contact.html" class="mb-2 text-white"><i class="fas fa-angle-right text-secondary me-2"></i>Contact us</a>
<a href="service.html" class="mb-2 text-white"><i class="fas fa-angle-right text-secondary me-2"></i>Our Services</a>
<a href="projects.html" class="mb-2 text-white"><i class="fas fa-angle-right text-secondary me-2"></i>Our Projects</a>
<a href="blog.html" class="mb-2 text-white"><i class="fas fa-angle-right text-secondary me-2"></i>Latest Blog</a>
</div>
</div>
<div class="col-lg-3 col-md-6">
<a href="#" class="h3 text-secondary">Help Link</a>
<div class="mt-4 d-flex flex-column help-link">
<a href="contact.html" class="mb-2 text-white"><i class="fas fa-angle-right text-secondary me-2"></i>Contact</a>
</div>
</div>
<div class="col-lg-3 col-md-6">
<a href="#" class="h3 text-secondary">Contact Us</a>
<div class="text-white mt-4 d-flex flex-column contact-link">
<a href="#" class="pb-3 text-light border-bottom border-primary"><i class="fas fa-map-marker-alt text-secondary me-2"></i> 5 Pike Street, Freetown, Sierra Leone</a>
<a href="#" class="py-3 text-light border-bottom border-primary"><i class="fas fa-phone-alt text-secondary me-2"></i> +232 78 100 022</a>
<a href="#" class="py-3 text-light border-bottom border-primary"><i class="fas fa-envelope text-secondary me-2"></i> qualitylogistics.supply.yahoo.com</a>
</div>
</div>
</div>
<hr class="text-light mt-5 mb-4">
<div class="row">
<div class="col-md-6 text-center text-md-start">
<span class="text-light"><a href="#" class="text-secondary"><i class="fas fa-copyright text-secondary me-2"></i>Quality and Logistics Supply</a>, All right reserved.</span>
</div>
<div class="col-md-6 text-center text-md-end">
<!--/*** This template is free as long as you keep the footer author’s credit link/attribution link/backlink. If you'd like to use the template without the footer author’s credit link/attribution link/backlink, you can purchase the Credit Removal License from "https://htmlcodex.com/credit-removal". Thank you for your support. ***/-->
<span class="text-light">Designed By <a href="" class="text-secondary"> Quality and Logistics Supply</a> Distributed By <a href="">Osman Sullayman Bah</a></span>
</div>
</div>
</div>
</div>
<!-- Footer End -->
<!-- Back to Top -->
<a href="#" class="btn btn-secondary btn-square rounded-circle back-to-top"><i class="fa fa-arrow-up text-white"></i></a>
<!-- JavaScript Libraries -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="lib/wow/wow.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/waypoints/waypoints.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<!-- Template Javascript -->
<script src="js/main.js"></script>
</body>
</html>