-
Notifications
You must be signed in to change notification settings - Fork 2
/
home.html
executable file
·1381 lines (878 loc) · 51.5 KB
/
home.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-2">
<!-- Title -->
<div class="row">
<div class="col">
<h2 class="text-primary h3"><span class="font-weight-semi-bold">Open Source Platform</span></h2>
<h2 class="text-primary h2"><span class="font-weight-semi-bold">For your Food or Grocery Delivery & Hyperlocal Business</span></h2>
<h5 class="font-weight-lighter">International, Decentralized and Open Source</h5>
<!-- <h2 class="text-primary h3"><span class="font-weight-semi-bold">Nonprofit Open Source</span></h2>
<h2 class="text-primary h2"><span class="font-weight-semi-bold">Decentralized Hyperlocal Shopping Platform</span></h2>
<h5 class="font-weight-lighter">International, Decentralized and Open Source</h5> -->
<!-- <h2 class="text-primary h3"><span class="font-weight-semi-bold">Nonprofit Open Source</span></h2>
<h2 class="text-primary h2"><span class="font-weight-semi-bold">Food or Grocery Delivery & Hyperlocal Shopping Platform</span></h2>
<h5 class="font-weight-lighter">International, Decentralized and Open Source</h5> -->
<!-- <h2 class="text-primary h3"><span class="font-weight-semi-bold">Create Your Own</span></h2>
<h2 class="text-primary h2"><span class="font-weight-semi-bold">Food Delivery & Hyperlocal Marketplace</span></h2>
<h5 class="font-weight-lighter">International, Decentralized and Open Source</h5> -->
</div>
<div class="mt-4 mt-lg-0 col-lg-5">
<div class="mb-4 d-none d-lg-block">
<h4 class="font-weight-medium text-secondary">available for android</h4>
<h5 class="font-weight-medium text-secondary">Coming Soon for IOS and Web</h5>
</div>
<!-- https://play.google.com/store/apps/details?id=org.nearbyshops.enduserappnew -->
<!-- Button -->
<a href="./app_demo.html">
<img src="/images/play_store_logo.png" width="170" >
<!-- <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">Download</span>-->
<!-- <strong class="font-size-1">EndUser</strong>-->
<!-- </span>-->
<!-- </span>-->
<!-- </button>-->
</a>
</div>
</div>
</div>
<!-- Page Content -->
<div class="container text-center space-bottom-2">
<!-- <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="210" 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/items-in-shop-new.png" width="210" 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/screenshots_usa/shops_list_new.png" width="210" alt="Image Description">
<!-- <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/screenshots_usa/order_detail_john_doe.png" width="210" alt="Image Description">
<!-- <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 -->
<!-- Divider -->
<div class="w-65 w-lg-50 mx-auto space-1">
<hr class="mt-0 mb-0">
</div>
<!-- End Divider -->
<!-- Content Section -->
<div class="container space-1 space-lg-2">
<h1 class="h2 text-primary"><span class="font-weight-semi-bold">How it works?</span></h1>
<div class="row mt-5">
<div class="col-lg-6 ">
<div class="center-block">
<h2 class="h4">Step 1 : Create your Free Local Market Instance</h2>
<p class="mt-3">
Anyone can create a local market by self-hosting a local market instance (Server).
Use our easy
<a href="https://developer.nearbyshops.org/installation/installation-guide-quick-docker.html">docker installation guide</a>
to setup your market in just 10 minutes.
<p>
<h2 class="h4 mt-5">Step 2 : Publish on Google Play or Link to Local Market Aggregators</h2>
<p class="mt-3">
Publish your app on Google Play or link your Instance to Local Market Aggregators.
<p>
<!-- Your market is Now accessible from Nearby Shops app. -->
</div>
</div>
<div class="col-lg-6">
<div class="center-block">
<h2 class="h4 mt-0">Step 3 : Save your Marketing Expenses</h2>
<p class="mt-3">
Save your marketing expenses by getting free access to existing Customers of Local Market Aggregators.
There is no need to pay any commission or marketing fee.
<p>
<h2 class="h4 mt-5">Step 4 : Earn Income from your Local Market (Optional)</h2>
<p class="mt-3">
As a market admin you can add multiple Vendors. Charge your vendors
a fixed monthly fee to earn income from your market.
</p>
</div>
<!-- src="https://image.flaticon.com/icons/png/512/671/671627.png"-->
</div>
</div>
</div>
<!-- End Content Section -->
<!-- Divider -->
<div class="w-65 w-lg-50 mx-auto space-1">
<hr class="mt-0 mb-0">
</div>
<!-- End Divider -->
<!-- Content Section -->
<div class="container space-1 space-lg-2">
<h2 class="h2 text-primary font-weight-medium">Start your Hyperlocal Business in Zero Investment</h2>
<h2 class="h5 text-primary font-weight-medium">Quickstart your Food Delivery or Grocery business hassle free</h2>
<div class="row">
<div class="col-lg-5 pt-5 pb-5">
<div class="row">
<img class="col-6 space-top-0 img-fluid rounded" src="/images/screenshots_usa/shops_list_new.png" alt="Image Description">
<img class="col-6 space-top-0 img-fluid rounded" src="/images/screenshots_usa/order_detail_john_doe.png" alt="Image Description">
</div>
</div>
<div class="col-lg-7 space-lg-1 ">
<div class="pl-lg-4">
<h2 class="h4">Start with free software</h2>
<p>
Build your marketplace on a free and open source software.
</p>
<!-- We delegate the responsibility of order delivery to the vendors and Shop Owners. -->
<h2 class="h4">No need to hire delivery Staff</h2>
<p>
We let vendors and Shop Owners deliver orders. Therefore
you dont need to hire delivery staff & invest your money in building delivery Infrastructure.
</p>
<h2 class="h4">Save your Marketing Expenses</h2>
<p>
Link your local market to local market Aggregators and get free access to
existing customers of local market Aggregators.
</p>
<h2 class="h4">Win Customers Easily</h2>
<p>
Its difficult to build trust and provide faster delivery in case of conventional ecommerce.
Hyperlocal ecommerce dont have these issues.
</p>
</div>
</div>
</div>
</div>
<!-- End Content Section -->
<!-- Content Section -->
<div class="container space-1 space-lg-2">
<!-- <h2 class="h3 text-primary font-weight-medium">Provide Zero Commission</h2> -->
<h2 class="h2 text-primary font-weight-medium">Create Marketplace for your Local Community</h2>
<h2 class="h5 text-primary font-weight-medium">Bring your Farmers Market, Local Food Co-op and Mom and Pop Store Online</h2>
<div class="row">
<div class="col-lg-7 space-lg-1 ">
<div class="pr-lg-4">
<h2 class="h4">No need to maintain code</h2>
<p>
You do not need to
Customize and publish any app and maintain any code.
We take care of Everything.
<p>
<h2 class="h4">Earn Income from your Market (Optional)</h2>
<p>
Charge a montly fee to your Vendors and Earn Revenue from
your Local Market.
</p>
<h2 class="h4">Try out new Ideas</h2>
<p>
Experiment and Try out your new local business ideas.
Benefit from the existing audience and infrastructure.
<p>
<h2 class="h4">Marketplace for Institute and Office Campuses</h2>
<p>
Create a market for Local Vendors Inside your Institute or Office Campuses.
<p>
</div>
</div>
<div class="col-lg-5 pt-5 pb-5">
<div class="row">
<img class="col-6 space-top-0 img-fluid rounded" src="/images/screenshots_usa/shops_list_new.png" alt="Image Description">
<img class="col-6 space-top-0 img-fluid rounded" src="/images/screenshots_usa/order_detail_john_doe.png" alt="Image Description">
</div>
</div>
</div>
</div>
<!-- End Content Section -->
<!-- Content Section -->
<div class="container space-1 space-lg-2">
<h2 class="h2 text-primary font-weight-medium">Local Marketplace for anything Else</h2>
<h2 class="h5 text-primary font-weight-medium">Sell Electronics, Hardware, Auto Spare Parts, DIY Equipment or Anything Else</h2>
<div class="row">
<div class="col-lg-5 pt-5 pb-5">
<div class="row">
<img class="col-6 space-top-0 img-fluid rounded" src="/images/multi-categories-3.png" alt="Image Description">
<img class="col-6 space-top-0 img-fluid rounded" src="/images/screenshots_usa/orders_list_john_doe.png" alt="Image Description">
</div>
</div>
<div class="col-lg-7 space-lg-1 ">
<div class="pl-lg-4">
<h2 class="h4 mt-0">Available for all Countries</h2>
<p>
With support for multiple currencies we are available in any country accross the
world.
</p>
<h2 class="h4">Sell anything in your City, Village or Town</h2>
<p>
Use your local marketplace to sell anything you want. Experiment and
try out new ideas.
<p>
<h2 class="h4 mt-0">Sell Anything not Just Grocery</h2>
<p>
Not just grocery you can build your local marketplace for anything Else. Like Electronics, Hardware, or DIY Equipments.
</p>
</div>
</div>
</div>
</div>
<!-- End Content Section -->
<!-- Content Section -->
<div class="container space-1 space-lg-2">
<h2 class="text-primary font-weight-medium">We Support Ethical Businesses</h2>
<div class="row">
<div class="col-lg-7 space-lg-1 ">
<div class="pr-lg-1">
<!-- <h4 class="text-primary">Highlights</h4>-->
<!-- <h2 class="h4 mt-3">Ideal for Institutes, Offices and Small Campuses</h2>-->
<h2 class="h4">We dont have Shareholders</h2>
<p>
This platform is Nonprofit which means it cannot be sold to a VC funded startup.
It would never have shareholders and its directly funded by our users.
</p>
<!-- <h2 class="h4">No middle-man allowed</h2>-->
<!-- <p>-->
<!-- We do not allow middleman and business on our platform who-->
<!-- follow anti-competitive business practices.-->
<!-- </p>-->
<h2 class="h4">We support Cooperative Ownership</h2>
<p>
We love to work with co-ops and we believe in the principles of cooperative ownership.
<p>
<!-- <h2 class="h4">Our platform is free and Zero</h2>-->
<!-- <p>-->
<!-- We let co-ops take care of delivery. Essentially-->
<!-- eliminating the middlemen and giving our vendors a zero commission platform.-->
<!-- <p>-->
<!-- <a class="mt-3 btn btn-sm btn-primary btn-wide transition-3d-hover" href="/features.html">Find out More <span class="fas fa-angle-right ml-2"></span></a>-->
</div>
</div>
<div class="col-lg-5 pt-5 pb-5">
<div class="row">
<img class="col-6 space-top-0 img-fluid rounded" src="/images/help_local_vendors.jpg" alt="Image Description">
<img class="col-6 space-top-0 img-fluid rounded" src="/images/help_local/buy-local-produce-windmill-farms-san-ramon-570x428.jpg" alt="Image Description">
</div>
</div>
</div>
</div>
<!-- End Content Section -->
<!-- Divider -->
<div class="w-65 w-lg-50 mx-auto space-1">
<hr class="mt-0 mb-0">
</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">
<h2 class="text-primary">Create your Local Market and Help Your <span class="font-weight-semi-bold"> Local Economy</span></h2>
<p>
help your Local Community and vendors by hosting a local market for them.
<br>
</p>
</div>
<!-- End Title -->
<a class="btn btn-sm btn-primary btn-wide transition-3d-hover mr-3" href="/volunteer.html">Create Market<span class="fas fa-angle-right ml-2"></span></a>
<a class="btn btn-sm btn-primary btn-wide transition-3d-hover" href="/create_store.html">Create Store<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-1559925427-49435d834cb4?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=800&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-1559925427-49435d834cb4?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=800&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>
<!-- https://images.unsplash.com/photo-1554486855-60050042cd53?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=675&q=80-->
<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-1555876484-a71a693b161b?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=634&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-1555876484-a71a693b161b?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=634&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-1554486855-60050042cd53?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=675&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-1533900298318-6b8da08a523e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1350&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>
<!-- https://images.unsplash.com/photo-1475275083424-b4ff81625b60?ixlib=rb-1.2.1&auto=format&fit=crop&w=1352&q=80-->
<div class="col-5 px-2 mb-3">
<!-- Fancybox -->
<a class="js-fancybox u-media-viewer" href="javascript:;"
data-src="/images/help_local/buy-local-carisn.jpg"
data-fancybox="lightbox-gallery-hidden"
data-caption="Front in frames - image #04"
data-speed="700">
<img class="img-fluid rounded" src="/images/help_local/buy-local-carisn.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 space-1">
<hr class="mt-0 mb-0">
</div>
<!-- End Divider -->
<!-- Content Section -->
<div class="container space-2">
<div class="row">
<div class="col-lg-5 pt-7 pb-9">
<div class="row">
<img class="col-6 space-top-0 img-fluid rounded" src="/images/screenshots_usa/order_detail_john_doe.png" alt="Image Description">
<img class="col-6 space-top-0 img-fluid rounded" src="/images/screenshots_usa/orders_list_john_doe.png" alt="Image Description">
<!-- <img class="col-6 space-top-0 img-fluid rounded" src="/images/9.png" alt="Image Description">-->
<!-- <img class="col-6 space-top-0 img-fluid rounded" src="/images/8.png" alt="Image Description">-->
</div>
<div class="row space-top-1">
<img class="col-6 space-top-0 img-fluid rounded" src="/images/gifs/items_new_compressed.gif" alt="Image Description">
<img class="col-6 space-top-0 img-fluid rounded" src="/images/gifs/orders_compressed.gif" alt="Image Description">
</div>
</div>
<div class="col-lg-7 space-lg-1 ">
<div class="pl-lg-4">
<h2 class="h4 text-primary ">Features and Highlights</h2>
<h2 class="h4 mt-3">Open-Source and Developer Friendly</h2>
<p>
Nearby Shops comes with a comprehensive developer documentation that makes it simple and easy to customize, install your app and maintain your technical infrastructure.
<p>
<h2 class="h4">Mobile first and Multi-vendor</h2>
<p>
Nearby Shops comes with native android apps and is designed primarily for mobile.
Its a multi-vendor platform where customers can send orders to multiple shops / restaurants.
</p>
<h2 class="h4">Support for Multiple currencies</h2>
<p>
Nearby Shops has support for multiple currencies in the software.
</p>
<h2 class="h4">Delivery Panel for Vendors & Delivery Staff</h2>
<p>
Delivery can be provided by your own delivery staff or it can also be provided by shop-owners and restaurants
using their own delivery staff.
<p>
Nearby Shops has order tracking and inventory for home delivery where vendors and delivery staff can update order
status and track the orders for delivery.
</p>
<a href="https://developer.nearbyshops.org/integrations/e-mail-integration.html">
<h2 class="h4">
Third Party Integrations </h2>
</a>
<p>
Integrations for Sending SMS-OTP, E-mail and Push Notifications, Maps and Payment Gateway are available
</p>
<h2 class="h4">Order Tracking with Live Status Updates</h2>
<p>
Order Tracking with live status updates for customers using E-mail, SMS and Push Notifications are available.
</p>
<a class="mt-3 btn btn-sm btn-primary btn-wide transition-3d-hover" href="/features.html">Find out More <span class="fas fa-angle-right ml-2"></span></a>
</div>
</div>
</div>
</div>
<!-- End Content Section -->
<!-- Divider -->
<div class="w-65 w-lg-50 mx-auto">
<hr class="mt-0 mb-9">
</div>
<!-- End Divider -->
<!-- Mockup Block -->
<div class="container space-bottom-2 space-bottom-md-3 space-top-2">
<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">01.</span>
</span> -->
<h2 class="h4 font-weight-semi-bold text-primary">Open-Source and Nonprofit</h2>
<p>We are against monopoly and unfair competition that's why our technology is free and open-source.
<br><br>
We love open-source. Checkout out our source-code on github !</p>
<a class="btn mt-3 btn-sm btn-primary btn-wide transition-3d-hover" href="https://github.com/NearbyShops" target="_blank">
Nearby Shops on Github <span class="fas fa-angle-right ml-2"></span></a>
</div>
<!-- End Title -->
</div>
<div id="SVG_open_source" class="col-lg-7 svg-preloader">
<!-- SVG Icon -->
<figure class="ie-marketing-strategy" >
<img class="js-svg-injector" src="/images/undraw/undraw_open_source_1qxw_resize.svg" alt="Image Description"
data-parent="#SVG_open_source">
</figure>
<!-- End SVG Icon -->
</div>
</div>
</div>
<!-- End Mockup Block -->
<!-- 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="/images/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="/images/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 –>-->