-
Notifications
You must be signed in to change notification settings - Fork 2
/
home_14_mar_20.html
executable file
·1607 lines (1015 loc) · 57.9 KB
/
home_14_mar_20.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 h2"><span class="font-weight-semi-bold">Boost your Local Economy</span></h2> -->
<!-- <h2 class="text-primary h3"><span class="font-weight-semi-bold">Create your Local Marketplace</span></h2> -->
<!-- <h5 class="font-weight-lighter">Easy mobile Marketplace for your Local Community</h5> -->
<!--
<h2 class="text-primary h3"><span class="font-weight-semi-bold">Open Source International</span></h2>
<h2 class="text-primary h2"><span class="font-weight-semi-bold">Food Delivery and 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">Open Source Platform</span></h2>
<h2 class="text-primary h2"><span class="font-weight-semi-bold">For your Food Delivery and Hyperlocal Business</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>
<!-- /files/sarthika-end-user-latest.apk-->
<!-- Button -->
<a href="https://play.google.com/store/apps/details?id=org.nearbyshops.enduserappnew">
<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>
<!-- <div class="container space-top-2 space-bottom-1">-->
<!-- <!– Title –>-->
<!-- <div class="row">-->
<!-- <div class="col">-->
<!-- <h2 class="text-primary"><span class="font-weight-semi-bold">Nonprofit</span></h2>-->
<!-- <h2 class="text-primary"><span class="font-weight-semi-bold">Food Delivery and Local Shopping Platform</span></h2>-->
<!-- <h5 class="font-weight-lighter">Commission Free, Donation Funded and Decentralized</h5>-->
<!--<!– <h5 class="font-weight-light">Nonprofit Food Delivery and Local Shopping Platform</h5>–>-->
<!-- </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 their local market by hosting a Local Market Server (Instance).
Your Local Market is now accessible from Nearby Shops app.
<p>
<h2 class="h4 mt-5">Step 2 : Gain Free access to our Customers</h2>
<p class="mt-3">
Save your marketing expenses by getting free access to existing Customers of Nearby Shops app.
Customers can send orders to you directly from our app.
<p>
</div>
</div>
<div class="col-lg-6">
<!-- <img width="300"-->
<!-- src="/images/grow-your-community.jpg"-->
<!-- alt="Image Description">-->
<div class="center-block">
<h2 class="h4">Step 3 : Participate in our Crowdfunded Marketing Campaigns</h2>
<p class="mt-3">
We raise funds for marketing through donations and crowdfunding. You can
choose to donate and help the platform.
As a result you dont have to pay any commission or marketing fee to use the platform.
<p>
<h2 class="h4 mt-5">Step 4 : Earn Income from your 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 -->
<!-- Our marketing campaigns are a collective effort of our global-->
<!-- community of vendors and customers.-->
<!-- </br>-->
<!-- We dont charge you for any marketing costs.-->
<!-- 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="h3 text-primary font-weight-medium">Provide Zero Commission</h2> -->
<h2 class="h2 text-primary font-weight-medium">Start your Hyperlocal Business in Zero Investment</h2>
<h2 class="h5 text-primary font-weight-medium">Bring your food Delivery and Grocery Business up and running in Zero Investment</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">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">No need to Hire Delivery boys and Invest in Delivery</h2>
<p>
The vendor and the shop owner's will provide delivery by themselves. Therefore
you dont need to hire delivery boys and Invest in building your own
Delivery Infrastructure.
</p>
<h2 class="h4">Earn Income from your Market (Optional)</h2>
<p>
Charge a montly fee or commission to your Vendors and Earn Revenue from
your Local Market.
</p>
<h2 class="h4">Save your Marketing Expenses</h2>
<p>
Your market has free access to Existing audience
of Nearby Shops app. That helps you save a lot in
your marketing expenses.
</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-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">Save your Marketing Expenses</h2>
<p>
Your market has free access to Existing audience
of Nearby Shops app. That helps you save a lot in
your marketing expenses.
</p>
<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">Create Zero Commission Marketplace</h2>
<p>
Create a zero commission marketplace for your local vendors
and avoid paying hefty commission to food delivery and grocery apps.
</p>
<!-- Why pay hefty commission to food - grocery delivery apps when you can
create your own free local market. -->
<!--
<h2 class="h4">Lower operating Cost</h2>
<p>
We offer you an integrated platform which lowers your running cost.
Resulting is overall lower cost of business.
</p> -->
</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-7 space-lg-1 ">
<div class="pr-lg-4">
<h2 class="h4 mt-0">Available in 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">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">Ideal 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/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>
</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 -->
<!-- Terms Title Section -->
<div class="position-relative space-top-1">
<div class="container space-1">
<div class="w-md-80 w-lg-100">
<h2 class="text-primary"><span class="font-weight-semi-bold">Managed Hosting Plans</span> </h2>
<h5 class="">Self Hosting is Free try Managed Hosting in case you need it</h5>
</div>
</div>
</div>
<!-- End Terms Title Section -->
<!-- Pricing Section -->
<div class="container space-bottom-2">
<div class="row">
<!-- Pricing -->
<div class="col-lg-4">
<a href="#">
<h4>One Month Free Trial Available</h4>
<h5>No Credit Card Required</h5>
</a>
<div class="space-top-1">
<div class="mb-4 ">
<h2 class="font-weight-medium text-secondary">Demo<span class="font-weight-semi-bold"> </span></h2>
<p>For login credentials and admin console access
<a href="app_demo.html">please click here.</a>
</p>
</div>
<a href="https://play.google.com/store/apps/details?id=org.nearbyshops.enduserappnew">
<img src="/images/play_store_logo.png" width="170" >
</a>
</div>
</div>
<!-- End Pricing -->
<div class="w-lg-65 mx-lg-auto col-lg-8">
<div class="card-deck d-block d-md-flex card-md-gutters-3 mb-5">
<!-- Pricing -->
<div class="card card-frame-highlighted text-center">
<!-- Header -->
<header class="card-header p-5">
<h4 class="h5 text-primary">Startup Plan</h4>
<div>
<span class="h1 text-dark font-weight-medium">
<span class="align-top font-size-2">$</span>10
</span>
<span class="text-secondary">per month per Market</span>
<p>Upto 100 shops per market</p>
</div>
</header>
<!-- End Header -->
<!-- Content -->
<div class="card-body p-5">
<!-- SVG Icon -->
<figure id="SVGstartup" class="svg-preloader w-80 mx-auto mb-5">
<img class="js-svg-injector" src="/assets/svg/flat-icons/free-trial.svg" alt="Image Description"
data-parent="#SVGstartup">
</figure>
<!-- End SVG Icon -->
<!-- https://gum.co/cNogs -->
<a href="https://rzp.io/i/FtsSXzD">
<button type="button" class="btn btn-sm btn-block btn-success transition-3d-hover">Buy</button>
</a>
</div>
<!-- End Content -->
</div>
<!-- End Pricing -->
<!-- Pricing -->
<div class="card text-center mb-5 mb-md-0">
<!-- Header -->
<header class="card-header p-5">
<h4 class="h5 text-success">Business Plan</h4>
<div>
<span class="h1 text-dark font-weight-medium">
<span class="align-top font-size-2">$</span>30
</span>
<span class="text-secondary">per month per Market</span>
<p>Unlimited Shops per Market</p>
</div>
</header>
<!-- End Header -->
<!-- Content -->
<div class="card-body p-5">
<!-- SVG Icon -->
<figure id="SVGFreeTrial" class="svg-preloader w-80 mx-auto mb-5">
<img class="js-svg-injector" src="/assets/svg/flat-icons/enterprise-1.svg" alt="Image Description"
data-parent="#SVGFreeTrial">
</figure>
<!-- End SVG Icon -->
<a href="https://api.razorpay.com/v1/l/subscriptions/sub_EODzRa8Ebm8FB2">
<button type="button" class="btn btn-sm btn-block btn-primary transition-3d-hover">Buy</button>
</a>
</div>
<!-- End Content -->
</div>
<!-- End Pricing -->
</div>
</div>
</div>
</div>
<!-- End Pricing 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 Vendors</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">