-
Notifications
You must be signed in to change notification settings - Fork 2
/
home_backup.html
executable file
·1114 lines (807 loc) · 46.4 KB
/
home_backup.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">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-92673120-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-92673120-1');
</script>
<!-- Title -->
<title>Nearby Shops</title>
<!-- Favicon -->
<link rel="shortcut icon" href="favicon.ico">
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Google Fonts -->
<link href="//fonts.googleapis.com/css?family=Poppins:300,400,500,600,700" rel="stylesheet">
<!-- CSS Front Template -->
<link rel="stylesheet" href="assets/vendor/font-awesome/css/fontawesome-all.min.css">
<link rel="stylesheet" href="assets/vendor/animate.css/animate.min.css">
<link rel="stylesheet" href="assets/vendor/hs-megamenu/src/hs.megamenu.css">
<link rel="stylesheet" href="assets/vendor/fancybox/jquery.fancybox.css">
<link rel="stylesheet" href="assets/vendor/cubeportfolio/css/cubeportfolio.min.css">
<link rel="stylesheet" href="assets/vendor/jquery-ui/themes/base/jquery-ui.min.css">
<link rel="stylesheet" href="assets/vendor/prism/prism.css">
<!-- CSS Front Template -->
<link rel="stylesheet" href="assets/css/theme.min.css">
<!-- CSS Front Doc -->
<link rel="stylesheet" href="assets/css/starter.css">
<script
src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous">
</script>
<script>
$(function(){
$("#header").load("header.html");
$("#footer").load("footer.html");
});
</script>
</head>
<body>
<!-- <h1>Hello, world!</h1> -->
<div id="header"></div>
<div class="container space-top-2 space-bottom-1">
<!-- Title -->
<small class="text-secondary text-uppercase font-weight-medium mb-2">Nearby Shops</small>
<!-- <h1 class="font-weight-medium">Technology Stack</h1> -->
<h2 class="text-primary">Nearby Shops</h2>
<h2 class="text-primary"><span class="font-weight-semi-bold">Your access to local markets around the world</span></h2>
<h5 class="font-weight-light">discover local markets in your area and shop locally from those local markets ...</h5>
</div>
<!-- Page Content -->
<div class="container text-center">
<!-- <h1 class="font-weight-light text-center text-lg-left mt-4 mb-0">Thumbnail Gallery</h1> -->
<hr class="mt-0 mb-5">
<!--width="200" height="300"-->
<div class="row text-center justify-content-center">
<div class="mt-2 col-lg-3 col-md-4 col-6 text-center">
<img class="img-fluid rounded" src="/images/3.png" width="200" height="300" alt="Image Description">
</div>
<div class="mt-2 col-lg-3 col-md-4 col-6 text-center">
<img class="img-fluid rounded" src="/images/5.png" width="200" height="300" alt="Image Description">
</div>
<div class="mt-2 col-lg-3 col-md-4 col-6 text-center">
<img class="img-fluid rounded" src="/images/6.png" width="200" height="300" alt="Image Description">
</div>
<div class="mt-2 col-lg-3 col-md-4 col-6 text-center">
<img class="img-fluid rounded" src="/images/9.png" width="200" height="300" alt="Image Description">
</div>
</div>
<!--<hr class="mt-5 mb-5">-->
</div>
<!-- /.container -->
<!--<!– Features Section –>-->
<!--<div class="container">-->
<!--<div class="row ">-->
<!--<div class="col-lg-5">-->
<!--<!– Title –>-->
<!--<div class="pl-lg-4">-->
<!--<div class="mb-5">-->
<!--<h2 class="font-weight-medium text-secondary">Download Nearby Shops<span class="font-weight-semi-bold"> </span></h2>-->
<!--<p>Download the app from google play store and access the local markets in your area</p>-->
<!--</div>-->
<!--<!– Button –>-->
<!--<a href="https://play.google.com/store/apps/details?id=org.nearbyshops.enduserappnew">-->
<!--<button type="button" class="btn btn-xs btn-dark btn-wide transition-3d-hover text-left mb-2">-->
<!--<span class="media align-items-center">-->
<!--<span class="fab fa-google-play font-size-2 mr-3"></span>-->
<!--<span class="media-body">-->
<!--<span class="d-block">Get it on</span>-->
<!--<strong class="font-size-1">Google Play</strong>-->
<!--</span>-->
<!--</span>-->
<!--</button>-->
<!--</a>-->
<!--<!– End Button –>-->
<!--</div>-->
<!--<!– End Title –>-->
<!--</div>-->
<!--<div class="col-lg-5">-->
<!--<!– Title –>-->
<!--<div class="pl-lg-4">-->
<!--<div class="mb-5">-->
<!--<h2 class="font-weight-medium text-secondary">Download Nearby Shops for <span class="font-weight-semi-bold"> Shop Owners </span> </h2>-->
<!--<p>Download the app for shop owners from google play store</p>-->
<!--</div>-->
<!--<!– Button –>-->
<!--<a href="https://play.google.com/store/apps/details?id=org.nearbyshops.shopkeeperappnew">-->
<!--<button type="button" class="btn btn-xs btn-dark btn-wide transition-3d-hover text-left mb-2">-->
<!--<span class="media align-items-center">-->
<!--<span class="fab fa-google-play font-size-2 mr-3"></span>-->
<!--<span class="media-body">-->
<!--<span class="d-block">Get it on</span>-->
<!--<strong class="font-size-1">Google Play</strong>-->
<!--</span>-->
<!--</span>-->
<!--</button>-->
<!--</a>-->
<!--<!– End Button –>-->
<!--</div>-->
<!--<!– End Title –>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--<!– End Features Section –>-->
<!-- End Features Section -->
<!--<!– Divider –>-->
<!--<div class="w-65 w-lg-50 mx-auto">-->
<!--<hr class="mt-0 mb-9">-->
<!--</div>-->
<!--<!– End Divider –>-->
<!-- Divider -->
<div class="w-65 w-lg-50 mx-auto space-2">
<hr class="mt-0 mb-9">
</div>
<!-- End Divider -->
<!-- Features Section -->
<div class="container">
<div class="row ">
<div class="col">
<div class="w-md-80">
<h1 class="text-primary"><span class="font-weight-semi-bold">Shop Locally </span> in your area </h1>
<p>With Nearby Shops you can see the local markets in your area and shop locally from those markets</p>
<p>You can buy fruits, vegetables, grocery, electronics or just anything that is available locally ... these items will
be delivered to you at your home !</p>
</div>
</div>
<div class="col-lg-5">
<!-- Title -->
<div class="pl-lg-4">
<div class="mb-5">
<h2 class="font-weight-medium text-secondary">Download Nearby Shops <span class="font-weight-semi-bold"> </span></h2>
<p>Download nearby shops and access the local markets in your area</p>
</div>
<!-- Button -->
<a href="/files/nearby-shops-end-user-14-may-19.apk">
<button type="button" class="btn btn-xs btn-dark btn-wide transition-3d-hover text-left mb-2">
<span class="media align-items-center">
<span class="fa fa-download font-size-2 mr-3"></span>
<span class="media-body">
<span class="d-block">Get it now</span>
<strong class="font-size-1">Download</strong>
</span>
</span>
</button>
</a>
<!-- End Button -->
<!-- Button -->
<a class="ml-xl-5" href="https://play.google.com/store/apps/details?id=org.nearbyshops.enduserappnew">
<button type="button" class="btn btn-xs btn-dark btn-wide transition-3d-hover text-left mb-2">
<span class="media align-items-center">
<span class="fab fa-google-play font-size-2 mr-3"></span>
<span class="media-body">
<span class="d-block">Get it on</span>
<strong class="font-size-1">Google Play</strong>
</span>
</span>
</button>
</a>
<!-- End Button -->
</div>
<!-- End Title -->
</div>
</div>
</div>
<!-- End Features Section -->
<!--<!– Divider –>-->
<!--<div class="w-65 w-lg-50 mx-auto space-2">-->
<!--<hr class="mt-0 mb-9">-->
<!--</div>-->
<!--<!– End Divider –>-->
<!-- Features Section -->
<div class="container space-3">
<div class="row ">
<div class="col">
<div class="w-md-80">
<h1 class="text-primary"><span class="font-weight-semi-bold">Get wider access </span></br>for your local shop </h1>
<!-- <p class="text-primary">Demo for end-user app</p> -->
<p>Reach out to more customers and bring your shop to wider access and visibility from people in your area </p>
</div>
</div>
<div class="col-lg-5">
<!-- Title -->
<div class="pl-lg-4">
<div class="mb-5">
<h2 class="font-weight-medium text-secondary">Download Nearby Shops for <span class="font-weight-semi-bold"> Shop Owners </span> </h2>
<p>List your shop on local market and give your shop access to greater audience</p>
</div>
<!-- Button -->
<a href="#">
<button type="button" class="btn btn-xs btn-dark btn-wide transition-3d-hover text-left mb-2">
<span class="media align-items-center">
<span class="fa fa-download font-size-2 mr-3"></span>
<span class="media-body">
<span class="d-block">Get it now</span>
<strong class="font-size-1">Download</strong>
</span>
</span>
</button>
</a>
<!-- End Button -->
<!-- Button -->
<a class="ml-xl-5" href="https://play.google.com/store/apps/details?id=org.nearbyshops.shopkeeperappnew">
<button type="button" class="btn btn-xs btn-dark btn-wide transition-3d-hover text-left mb-2">
<span class="media align-items-center">
<span class="fab fa-google-play font-size-2 mr-3"></span>
<span class="media-body">
<span class="d-block">Get it on</span>
<strong class="font-size-1">Google Play</strong>
</span>
</span>
</button>
</a>
<!-- End Button -->
</div>
<!-- End Title -->
</div>
</div>
</div>
<!-- End Features Section -->
<!--<!– Features Section –>-->
<!--<div class="position-relative space-2" style="margin-top: 0px">-->
<!--<div class="container">-->
<!--<div class="row ">-->
<!--<div class="col">-->
<!--<div class="w-md-80">-->
<!--<h1 class="text-primary"><span class="font-weight-semi-bold">Instructions for </span> Demo </h1>-->
<!--<p>Login credentials : 9490523891 (username) | password (password)-->
<!--</br>Login to the end-user app with the above credentials and enjoy the demo.</p>-->
<!--<p class="text-primary">For a better experience set your location</p>-->
<!--<!–<p>The nearby shops currently have shops available in only few cities. If you are living in a city where shops are not available. You need to set a fake location.–>-->
<!--<!–</p>–>-->
<!--<!–<p>Use any location faker app which you can download from Google Playstore and set your location to “Hyderabad, India”.–>-->
<!--<!–You will start to see some shops and items visible in the nearby shops app.</p> –>-->
<!--<p>For a better experience to help you understand how location features work. We recommend you to set a fake location.</p>-->
<!--<p>Use any location faker app which you can download from Google Playstore and set your location to “Hyderabad, India”.</p>-->
<!--</div>-->
<!--</div>-->
<!--<div class="col-lg-5">-->
<!--<!– Title –>-->
<!--<div class="pl-lg-4">-->
<!--<div class="mb-5">-->
<!--<h2 class="font-weight-medium text-secondary">Download Nearby Shops for <span class="font-weight-semi-bold"> End-User </span></h2>-->
<!--<p>Download the app from google play store and see the demo to see how it works for an end-user</p>-->
<!--</div>-->
<!--<!– Button –>-->
<!--<a href="https://play.google.com/store/apps/details?id=org.nearbyshops.enduserappnew">-->
<!--<button type="button" class="btn btn-xs btn-dark btn-wide transition-3d-hover text-left mb-2">-->
<!--<span class="media align-items-center">-->
<!--<span class="fab fa-google-play font-size-2 mr-3"></span>-->
<!--<span class="media-body">-->
<!--<span class="d-block">Get it on</span>-->
<!--<strong class="font-size-1">Google Play</strong>-->
<!--</span>-->
<!--</span>-->
<!--</button>-->
<!--</a>-->
<!--<!– End Button –>-->
<!--</div>-->
<!--<!– End Title –>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--<!– End Features Section –>-->
<!--<!– Features Section –>-->
<!--<div class="position-relative space-2" style="margin-top: 0px">-->
<!--<div class="container">-->
<!--<div class="row ">-->
<!--<div class="col">-->
<!--<div class="w-md-80">-->
<!--<h1 class="text-primary"><span class="font-weight-semi-bold">Instructions for </span></br>Shop Owner Demo </h1>-->
<!--<!– <p class="text-primary">Demo for end-user app</p> –>-->
<!--<p>Install the shop owner app from google play store then you can login using the following credentials. </p>-->
<!--<p>Login credentials : 8074516088 (username) | password (password)-->
<!--</br>Login to the shop owner app with the above credentials and enjoy the demo.</p>-->
<!--</div>-->
<!--</div>-->
<!--<div class="col-lg-5">-->
<!--<!– Title –>-->
<!--<div class="pl-lg-4">-->
<!--<div class="mb-5">-->
<!--<h2 class="font-weight-medium text-secondary">Download Nearby Shops for <span class="font-weight-semi-bold"> Shop Owners </span> </h2>-->
<!--<p>Download the app from google play store and see the demo to see how the app works for the shop-owner</p>-->
<!--</div>-->
<!--<!– Button –>-->
<!--<a href="https://play.google.com/store/apps/details?id=org.nearbyshops.shopkeeperappnew">-->
<!--<button type="button" class="btn btn-xs btn-dark btn-wide transition-3d-hover text-left mb-2">-->
<!--<span class="media align-items-center">-->
<!--<span class="fab fa-google-play font-size-2 mr-3"></span>-->
<!--<span class="media-body">-->
<!--<span class="d-block">Get it on</span>-->
<!--<strong class="font-size-1">Google Play</strong>-->
<!--</span>-->
<!--</span>-->
<!--</button>-->
<!--</a>-->
<!--<!– End Button –>-->
<!--</div>-->
<!--<!– End Title –>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--<!– End Features Section –>-->
<!-- Divider -->
<div class="w-65 w-lg-50 mx-auto space-1">
<hr class="mt-0 mb-9">
</div>
<!-- End Divider -->
<!-- Mockup Block -->
<div class="container space-1">
<div class="row align-items-lg-center">
<div class="col-lg-5 order-lg-2 mb-7 mb-lg-0">
<!-- Title -->
<div class="pl-lg-4">
<!-- <span class="btn btn-icon btn-soft-primary rounded-circle mb-3">
<span class="small font-weight-semi-bold btn-icon__inner">02.</span>
</span> -->
<h2 class="h4 font-weight-semi-bold text-primary">Designed for local shopping</h2>
<p class="mb-0">Nearby Shops helps people buy items like fruits, vegetables and grocery from shops located near to them and even get the home delivery of the items they have purchased.
<br/><br/>
Shopping fruits, vegetables and grocery is just an example. You can buy or sell almost anything that is available locally. </p>
</div>
<!-- End Title -->
</div>
<div id="SVGappDevelopment" class="col-lg-7 order-lg-1 svg-preloader">
<!-- SVG Icon -->
<figure class="ie-app-development">
<img class="js-svg-injector" src="assets/svg/undraw/undraw_online_shopping_ga73 (1).svg" alt="SVG Illustration"
data-parent="#SVGappDevelopment">
</figure>
<!-- End SVG Icon -->
</div>
</div>
</div>
<!-- End Mockup Block -->
<!-- Mockup Block -->
<div class="container space-top-2 space-top-md-3 space-bottom-3">
<div class="row align-items-lg-center">
<div class="col-lg-5 mb-7 mb-lg-0">
<!-- Title -->
<div class="pr-lg-4">
<!-- <span class="btn btn-icon btn-soft-primary rounded-circle mb-3">
<span class="small font-weight-semi-bold btn-icon__inner">03.</span>
</span> -->
<!-- <h2 class="h4 font-weight-semi-bold text-primary">Key benefits of Local Shopping</h2> -->
<h2 class="h4 font-weight-semi-bold text-primary">Faster Delivery and More trust</h2>
<p class="mb-0">
Why to wait for more than a day for your items to get delivered. Now customers can get items delivered same day.
<br><br>
When people buy from shops located near to them they can visit the shop and resolve their issue in case their is any problem.
This builds more trust between the customers and shop owners.<br/><br/> More Trustworthy and Quicker Delivery are the two best advantages of buying from shops located near to you.
<!--<br/><br/>-->
<!--hyperlocal e-commerce is more profitable and easy to setup compared to conventional ecommerce.-->
</p>
<!--<p class="mb-0">-->
<!--Why to get involved in the hassle of waiting for more than 2 days for your items to deliver. Now you can get items delivered same day. When people buy from shops located near to them if there is any issue with the order the customers can directly approach the store and resolve their issue.-->
<!--This builds more trust between the customers and shop owners.<br/><br/> More Trustworthy and More Quicker Delivery are the two best advantages of buying from a store located near to you. </p>-->
</div>
<!-- End Title -->
</div>
<!-- <img src="https://images.unsplash.com/photo-1548678967-f1aec58f6fb2?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1490&q=80" height="500px" width="200px"/> -->
<div id="SVGbusinessAnalysis" class="col-lg-7 ">
<!-- SVG Icon -->
<figure class="ie-business-analysis">
<img class="js-svg-injector" src="assets/svg/undraw/undraw_Container_ship_urt4.svg" alt="SVG Illustration"
data-parent="#SVGbusinessAnalysis">
</figure>
<!-- End SVG Icon -->
</div>
</div>
</div>
<!-- End Mockup Block -->
<!--<!– Divider –>-->
<!--<div class="w-65 w-lg-50 mx-auto">-->
<!--<hr class="mt-0 mb-9">-->
<!--</div>-->
<!--<!– End Divider –>-->
<!--<div class="position-relative">-->
<!--<div class="container space-2">-->
<!--<div class="w-md-80 w-lg-60">-->
<!--<h1 class="text-primary">What can you do with <span class="font-weight-semi-bold"> Nearby Shops ?</span></h1>-->
<!--<p>Wordpress is a free software that you can use to build your own self-hosted website.-->
<!--Similarly you can use nearby shops to build your own self-hosted grocery app or-->
<!--food delivery app.-->
<!--<br><br>-->
<!--Its fully open-source and you dont need to pay any license fee. Not even for commercial usage !-->
<!--<br><br>-->
<!--Delivery of grocery items and Food delivery are just an example.-->
<!--You can sell and buy almost anything that can be sold locally.-->
<!--Like stationary items, electrical items, electronics, hardware and such !-->
<!--<br><br>-->
<!--You can install it on cloud hosting platform like digital ocean and get your app up and running in just 5 $ per month hosting fee.-->
<!--To install your app just head over to the developer section and see the installation guide !-->
<!--Or tell us we will install it for you !-->
<!--</p>-->
<!--<a class="btn btn-sm btn-primary btn-wide transition-3d-hover mt-3" href="https://developer.nearbyshops.org/installation/installation-on-digital-ocean.html">Install Nearby Shops<span class="fas fa-angle-right ml-2"></span></a>-->
<!--<a class="btn btn-sm btn-primary btn-wide transition-3d-hover mt-3 ml-3" href="http://forum.nearbyshops.org">Get Help to Install<span class="fas fa-angle-right ml-2"></span></a>-->
<!--</div>-->
<!--</div>-->
<!-- Divider -->
<div class="w-65 w-lg-50 mx-auto">
<hr class="mt-0 mb-9">
</div>
<!-- End Divider -->
<!-- Features for Entrepreneurs -->
<div class="overflow-hidden">
<div class="container space-2">
<div class="row justify-content-between align-items-center">
<div class="col-lg-5 mb-7 mb-lg-0">
<div class="pr-md-4">
<!-- Title -->
<div class="mb-7">
<span class="btn btn-xs btn-soft-success btn-pill mb-2">Entrepreneurs</span>
<h2 class="text-primary">Nearby Shops for <span class="font-weight-semi-bold">Entrepreneurs</span></h2>
<p>Now you can build your own app based local marketplace with very low investment.
Open Source technology can help save your financial investment that you require to start your business.
</p>
<p>It can also help you save your time to setup your own marketplace.</p>
</div>
<!-- End Title -->
<a class="btn btn-sm btn-primary btn-wide transition-3d-hover" href="entrepreneur.html">Find out More <span class="fas fa-angle-right ml-2"></span></a>
</div>
</div>
<div class="col-lg-6 position-relative">
<!-- Image Gallery -->
<div class="row mx-gutters-2">
<div class="col-5 align-self-end px-2 mb-3">
<!-- Fancybox -->
<a class="js-fancybox u-media-viewer" href="javascript:;"
data-src="https://images.unsplash.com/photo-1494346480775-936a9f0d0877?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1303&q=80"
data-fancybox="lightbox-gallery-hidden"
data-caption="Front in frames - image #01"
data-speed="700">
<img class="img-fluid rounded" src="https://images.unsplash.com/photo-1494346480775-936a9f0d0877?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1303&q=80" alt="Image Description">
<span class="u-media-viewer__container">
<span class="u-media-viewer__icon">
<span class="fas fa-plus u-media-viewer__icon-inner"></span>
</span>
</span>
</a>
<!-- End Fancybox -->
</div>
<div class="col-7 px-2 mb-3">
<!-- Fancybox -->
<a class="js-fancybox u-media-viewer" href="javascript:;"
data-src="https://images.unsplash.com/photo-1518222319626-82d31a0ba6b0?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=647&q=80"
data-fancybox="lightbox-gallery-hidden"
data-caption="Front in frames - image #02"
data-speed="700">
<img class="img-fluid rounded" src="https://images.unsplash.com/photo-1518222319626-82d31a0ba6b0?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=647&q=80" alt="Image Description">
<span class="u-media-viewer__container">
<span class="u-media-viewer__icon">
<span class="fas fa-plus u-media-viewer__icon-inner"></span>
</span>
</span>
</a>
<!-- End Fancybox -->
</div>
<div class="col-5 offset-1 px-2 mb-3">
<!-- Fancybox -->
<a class="js-fancybox u-media-viewer" href="javascript:;"
data-src="https://images.unsplash.com/photo-1531496681078-27dc2277e898?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=967&q=80"
data-fancybox="lightbox-gallery-hidden"
data-caption="Front in frames - image #03"
data-speed="700">
<img class="img-fluid rounded" src="https://images.unsplash.com/photo-1531496681078-27dc2277e898?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=967&q=80" alt="Image Description">
<span class="u-media-viewer__container">
<span class="u-media-viewer__icon">
<span class="fas fa-plus u-media-viewer__icon-inner"></span>
</span>
</span>
</a>
<!-- End Fancybox -->
</div>
<div class="col-5 px-2 mb-3">
<!-- Fancybox -->
<a class="js-fancybox u-media-viewer" href="javascript:;"
data-src="assets/img/300x180/img1.jpg"
data-fancybox="lightbox-gallery-hidden"
data-caption="Front in frames - image #04"
data-speed="700">
<img class="img-fluid rounded" src="assets/img/300x180/img1.jpg" alt="Image Description">
<span class="u-media-viewer__container">
<span class="u-media-viewer__icon">
<span class="fas fa-plus u-media-viewer__icon-inner"></span>
</span>
</span>
</a>
<!-- End Fancybox -->
</div>
</div>
<!-- End Image Gallery -->
<!-- SVG Background Shape -->
<div id="SVGbgShapeID1" class="svg-preloader w-100 content-centered-y z-index-n1">
<figure class="ie-soft-triangle-shape">
<img class="js-svg-injector" src="assets/svg/components/soft-triangle-shape.svg" alt="Image Description"
data-parent="#SVGbgShapeID1">
</figure>
</div>
<!-- End SVG Background Shape -->
</div>
</div>
</div>
</div>
<!-- Features for Entrepreneurs -->
<!-- Divider -->
<div class="w-65 w-lg-50 mx-auto">
<hr class="mt-0 mb-9">
</div>
<!-- End Divider -->
<!-- End Terms Title Section -->
<!--<!– What We Do Section –>-->
<!--<div class="container space-2">-->
<!--<div class="row justify-content-lg-between">-->
<!--<div class="col-lg-4 mb-7 mb-lg-0">-->
<!--<!– Title –>-->
<!--<small class="text-secondary text-uppercase font-weight-medium mb-2">Lets talk about features</small>-->
<!--<h3 class="font-weight-medium">Features and Highlights</h3>-->
<!--<h5 class="font-weight-light">Designed Primarily for Mobile and Smartphone</h5>-->
<!--<p>Nearby Shops offers all the latest features to setup a modern local marketplace.</p>-->
<!--<!– End Title –>-->
<!--<br/>-->
<!---->
<!--<br/>-->
<!--<a class="btn btn-sm btn-primary btn-wide transition-3d-hover" href="features.html">All Features <span class="fas fa-angle-right ml-2"></span></a>-->
<!---->
<!--</div>-->
<!---->
<!---->
<!---->
<!--<div class="col-lg-7">-->
<!--<div class="row">-->
<!--<div class="col-sm-6 mb-3">-->
<!--<!– Icon Blocks –>-->
<!--<figure id="icon26" class="svg-preloader ie-height-56 w-100 max-width-8 mb-3">-->
<!--<img class="js-svg-injector" src="assets/svg/icons/icon-26.svg" alt="SVG"-->
<!--data-parent="#icon26">-->
<!--</figure>-->
<!--<h4 class="h5">Fully Open-Source</h4>-->
<!--<p class="font-size-1">Licensed under MIT open-source license. Free to use even for commertial usage.</p>-->
<!--<!– End Icon Blocks –>-->
<!--</div>-->
<!---->
<!--<div class="col-sm-6 mb-3">-->
<!--<!– Icon Blocks –>-->
<!--<figure id="icon27" class="svg-preloader ie-height-56 w-100 max-width-8 mb-3">-->
<!--<img class="js-svg-injector" src="assets/svg/icons/icon-27.svg" alt="SVG"-->
<!--data-parent="#icon27">-->
<!--</figure>-->
<!--<h4 class="h5">Phone and E-mail Verification using OTP</h4>-->
<!--<p class="font-size-1">Nearby Shops only allow phone and e-mails verified using OTP. This ensures your business is more secure.</p>-->
<!--<!– End Icon Blocks –>-->
<!--</div>-->
<!---->
<!--<div class="w-100"></div>-->
<!---->
<!--<div class="col-sm-6 mb-3 mb-sm-0">-->
<!--<!– Icon Blocks –>-->
<!--<figure id="icon25" class="svg-preloader ie-height-56 w-100 max-width-8 mb-3">-->
<!--<img class="js-svg-injector" src="assets/svg/icons/icon-25.svg" alt="SVG"-->
<!--data-parent="#icon25">-->
<!--</figure>-->
<!--<h4 class="h5">Push Notifications<span class="badge badge-success font-weight-medium badge-pill ml-1">beta</span></h4>-->
<!--<p class="font-size-1">Nearby Shops andoid app receives push notifications using one-signal and firebase.</p>-->
<!--<!– End Icon Blocks –>-->
<!--</div>-->
<!---->
<!--<div class="col-sm-6">-->
<!--<!– Icon Blocks –>-->
<!--<figure id="icon28" class="svg-preloader ie-height-56 w-100 max-width-8 mb-3">-->
<!--<img class="js-svg-injector" src="assets/svg/icons/icon-28.svg" alt="SVG"-->
<!--data-parent="#icon28">-->
<!--</figure>-->
<!--<h4 class="h5">Multi-vendor e-commerce platform</h4>-->
<!--<p class="font-size-1">We dont retrofit our software by adding plugins to make it a multi-vendor solution. Nearby Shops is designed for a multi-vendor shopping since its very inception.</p>-->
<!--<!– End Icon Blocks –>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--<!– End What We Do Section –>-->
<!--<!– Divider –>-->
<!--<div class="w-65 w-lg-50 mx-auto">-->
<!--<hr class="mt-0 mb-9">-->
<!--</div>-->
<!--<!– End Divider –>-->
<!--<!– Technology Stack –>-->
<!--<div class="container space-2">-->
<!---->
<!---->
<!--<div>-->
<!--<!– Title –>-->
<!--<small class="text-secondary text-uppercase font-weight-medium mb-2">Building Blocks</small>-->
<!--<h1 class="font-weight-medium">Technology Stack</h1>-->
<!--<h5 class="font-weight-light">Nearby Shops has a java backend with three android apps in the front end.</h5>-->
<!---->
<!--<!– End Title –>-->
<!---->
<!---->
<!--</div>-->
<!---->
<!---->
<!--<div class="row" style="margin-top: 70px">-->
<!--<div class="col-sm-6 col-lg-4 mb-7 mb-sm-9 justify-content-center">-->
<!--<!– Icon Block –>-->
<!--<div class="pr-lg-4">-->
<!--<figure id="icon2" class="svg-preloader ie-height-56 max-width-8 mb-3">-->
<!--<img class="js-svg-injector" src="assets/svg/icons/icon-2.svg" alt="SVG"-->
<!--data-parent="#icon2">-->
<!--</figure>-->
<!--<h4 class="h5">PostgreSQL Database</h4>-->
<!--<p>Nearby Shops uses PostgreSQL DB as its primary Database and connects with Database using high performance type 4 JDBC driver.-->
<!--</p>-->
<!--<!–PostgreSQL provides a type 4 JDBC driver.-->
<!--Type 4 indicates that the driver is written in Pure Java, and communicates in the database system's own network protocol. Because of this, the driver is platform independent; once compiled, the driver can be used on any system.–>-->
<!--</div>-->
<!--<!– End Icon Block –>-->
<!--</div>-->
<!---->
<!--<div class="col-sm-6 col-lg-4 mb-7 mb-sm-9">-->
<!--<!– Icon Block –>-->
<!--<div class="pr-lg-4">-->
<!--<figure id="icon1" class="svg-preloader ie-height-56 max-width-8 mb-3">-->
<!--<img class="js-svg-injector" src="assets/svg/icons/icon-1.svg" alt="SVG"-->
<!--data-parent="#icon1">-->
<!--</figure>-->
<!--<h4 class="h5">Jetty Server</h4>-->
<!--<p>Nearby Shops use Jetty Server as an embedded HTTP server</p>-->
<!--<!– <a href="#">Learn More</a> –>-->
<!--</div>-->
<!--<!– End Icon Block –>-->
<!--</div>-->
<!---->
<!--<div class="col-sm-6 col-lg-4 mb-7 mb-sm-9">-->
<!--<!– Icon Block –>-->
<!--<div class="pr-lg-4">-->
<!--<figure id="icon3" class="svg-preloader ie-height-56 max-width-8 mb-3">-->
<!--<img class="js-svg-injector" src="assets/svg/icons/icon-3.svg" alt="SVG"-->
<!--data-parent="#icon3">-->
<!--</figure>-->
<!--<h4 class="h5">Hikari CP</h4>-->
<!--<p>Hikari CP connection pooling library at this-->
<!--<a href="https://github.com/brettwooldridge/HikariCP">link</a>-->
<!--</p>-->
<!--</div>-->
<!--<!– End Icon Block –>-->
<!--</div>-->
<!---->
<!--<div class="col-sm-6 col-lg-4 mb-7 mb-sm-9">-->
<!--<!– Icon Block –>-->
<!--<div class="pr-lg-4">-->
<!--<figure id="icon4" class="svg-preloader ie-height-56 max-width-8 mb-3">-->
<!--<img class="js-svg-injector" src="assets/svg/icons/icon-4.svg" alt="SVG"-->
<!--data-parent="#icon4">-->
<!--</figure>-->
<!--<h4 class="h5">Thumbnailator</h4>-->
<!--<p>Thumbnailator - a thumbnail generation library for Java at this-->
<!--<a href="https://github.com/coobird/thumbnailator">-->
<!--link-->
<!--</a>-->
<!--</p>-->
<!--</div>-->
<!--<!– End Icon Block –>-->
<!--</div>-->
<!---->
<!--<div class="col-sm-6 col-lg-4 mb-7 mb-sm-9">-->
<!--<!– Icon Block –>-->
<!--<div class="pr-lg-4">-->
<!--<figure id="icon5" class="svg-preloader ie-height-56 max-width-8 mb-3">-->
<!--<img class="js-svg-injector" src="assets/svg/icons/icon-5.svg" alt="SVG"-->
<!--data-parent="#icon5">-->
<!--</figure>-->
<!--<h4 class="h5">JAX-RS</h4>-->
<!--<p>JAX-RS is a reference java implementation for building REST APIs</p>-->
<!--</div>-->
<!--<!– End Icon Block –>-->
<!--</div>-->
<!---->
<!--<!–<div class="col-sm-6 col-lg-4 mb-7 mb-sm-9">–>-->
<!--<!–<!– Icon Block –>–>-->
<!--<!–<div class="pr-lg-4">–>-->
<!--<!–<figure id="icon6" class="svg-preloader ie-height-56 max-width-8 mb-3">–>-->
<!--<!–<img class="js-svg-injector" src="assets/svg/icons/icon-6.svg" alt="SVG"–>-->
<!--<!–data-parent="#icon6">–>-->
<!--<!–</figure>–>-->
<!--<!–<p>We get it, you're busy and it is important that someone keep up with marketing and driving people to your brand. We've got you covered.</p>–>-->
<!--<!–<a href="#">Learn More</a>–>-->
<!--<!–</div>–>-->
<!--<!–<!– End Icon Block –>–>-->
<!--<!–</div>–>-->
<!---->
<!---->
<!--</div>-->
<!---->
<!--<!– Divider –>-->
<!--<div class="w-65 w-lg-50 mx-auto">-->
<!--<hr class="mt-0 mb-9">-->
<!--</div>-->
<!--<!– End Divider –>-->
<!---->
<!--</div>-->
<!--<!– End Technology Stack –>-->
<!--<!– Clients Section –>-->
<!--<div class="d-flex justify-content-center bg-secondary p-5" style="margin-top: 50px">-->
<!--<div class="mx-4">-->