forked from mdazfar2/Ezyshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
972 lines (944 loc) · 36.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Ezyshop</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta content="Free HTML Templates" name="keywords" />
<meta content="Free HTML Templates" name="description" />
<link rel="shortcut icon" href="img/favicon.png" type="image/x-icon" />
<!-- Favicon -->
<link href="img/favicon.ico" rel="icon" />
<!-- Google Web Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Handlee&family=Nunito&display=swap"
rel="stylesheet"
/>
<!-- Font Awesome -->
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- Flaticon Font -->
<link href="lib/flaticon/font/flaticon.css" rel="stylesheet" />
<!-- Libraries Stylesheet -->
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet" />
<link href="lib/lightbox/css/lightbox.min.css" rel="stylesheet" />
<link rel="stylesheet" href="css\footer.css" />
<!-- Customized Bootstrap Stylesheet -->
<link href="css/style.css" rel="stylesheet" />
</head>
<body>
<!-- Navbar Start -->
<div class="container-fluid bg-light position-relative shadow">
<nav
class="navbar navbar-expand-lg bg-light navbar-light py-3 py-lg-0 px-0 px-lg-5"
>
<a
href="index.html"
class="navbar-brand font-weight-bold text-secondary"
style="font-size: 50px"
>
<img style="width: 80px" src="./img/ezyshop.png" alt="logo" />
<span class="text-primary">Ezyshop</span>
</a>
<button
type="button"
class="navbar-toggler"
data-toggle="collapse"
data-target="#navbarCollapse"
>
<span class="navbar-toggler-icon"></span>
</button>
<div
class="collapse navbar-collapse justify-content-between"
id="navbarCollapse"
>
<div class="navbar-nav font-weight-bold mx-auto py-0">
<a href="index.html" class="nav-item nav-link active" id="home"
>Home</a
>
<a href="about.html" class="nav-item nav-link" id="about">About</a>
<a href="category.html" class="nav-item nav-link" id="category"
>Categories</a
>
<a href="team.html" class="nav-item nav-link" id="team">Teams</a>
<div class="nav-item dropdown">
<a
href="#"
class="nav-link dropdown-toggle"
data-toggle="dropdown"
>Pages</a
>
<div class="dropdown-menu rounded-0 m-0">
<a href="blog.html" class="dropdown-item">Blog Grid</a>
<a href="single.html" class="dropdown-item">Blog Detail</a>
</div>
</div>
<a href="contact.html" class="nav-item nav-link" id="contact"
>Contact</a
>
</div>
<a
id="authButton"
href="RegisterPages/register.html"
class="btn btn-primary px-4"
>Login/SignUp</a
>
</div>
</nav>
</div>
<!-- Navbar End -->
<!-- Header Start -->
<div class="container-fluid bg-primary px-0 px-md-5 mb-5 mt-5">
<div class="row align-items-center px-3">
<div class="col-lg-6 py-5 text-center text-lg-left">
<h4 class="text-white mb-4 mt-5 mt-lg-0">Ezyshop</h4>
<h1 class="display-3 font-weight-bold text-white">
Revolutionizing How You Shop
</h1>
<p class="text-white mb-4">
Bringing every store to your door, no matter where you live. EzyShop
makes it easy to browse, order, and receive products from your
favorite stores—from your local area to beyond—right from your live
place. Enjoy seamless shopping without stepping outside.
</p>
<a href="#" class="btn btn-secondary mt-1 py-3 px-5"
>Start Shopping</a
>
</div>
<div class="col-lg-6 text-center text-lg-right">
<img class="img-fluid mt-5 mb-2" src="img/header.png" alt="" />
</div>
</div>
</div>
<!-- Header End -->
<!-- Facilities Start -->
<div class="container-fluid pt-5">
<div class="container pb-3">
<div class="row">
<div class="col-lg-4 col-md-6 mb-4 d-flex align-items-stretch">
<div
class="d-flex bg-light shadow-sm border-top rounded flex-fill"
style="padding: 30px"
>
<i
class="flaticon-050-fence h1 font-weight-normal text-primary mb-3"
></i>
<div class="pl-4">
<h4>Wide Product Selection</h4>
<p class="m-0">
Discover a variety of products from groceries to electronics,
all in one app.
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mb-4 d-flex align-items-stretch">
<div
class="d-flex bg-light shadow-sm border-top rounded flex-fill"
style="padding: 30px"
>
<i
class="flaticon-022-drum h1 font-weight-normal text-primary mb-3"
></i>
<div class="pl-4">
<h4>Local & Mall-Based Stores</h4>
<p class="m-0">
Easily shop from your favorite local stores and top malls, all
from home.
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mb-4 d-flex align-items-stretch">
<div
class="d-flex bg-light shadow-sm border-top rounded flex-fill"
style="padding: 30px"
>
<i
class="flaticon-030-crayons h1 font-weight-normal text-primary mb-3"
></i>
<div class="pl-4">
<h4>Seamless Ordering Process</h4>
<p class="m-0">
Enjoy a simple and intuitive ordering system that saves you
time and hassle.
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mb-4 d-flex align-items-stretch">
<div
class="d-flex bg-light shadow-sm border-top rounded flex-fill"
style="padding: 30px"
>
<i
class="flaticon-017-toy-car h1 font-weight-normal text-primary mb-3"
></i>
<div class="pl-4">
<h4>Fast & Reliable Delivery</h4>
<p class="m-0">
Get your items delivered to your doorstep quickly and
reliably, wherever you are.
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mb-4 d-flex align-items-stretch">
<div
class="d-flex bg-light shadow-sm border-top rounded flex-fill"
style="padding: 30px"
>
<i
class="flaticon-025-sandwich h1 font-weight-normal text-primary mb-3"
></i>
<div class="pl-4">
<h4>Exclusive Discounts & Offers</h4>
<p class="m-0">
Unlock deals and discounts available only through EzyShop.
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mb-4 d-flex align-items-stretch">
<div
class="d-flex bg-light shadow-sm border-top rounded flex-fill"
style="padding: 30px"
>
<i
class="flaticon-047-backpack h1 font-weight-normal text-primary mb-3"
></i>
<div class="pl-4">
<h4>Secure Payments</h4>
<p class="m-0">
Shop with peace of mind, thanks to our safe and secure payment
gateway.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Facilities End -->
<!-- About Start -->
<div class="container-fluid py-5">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-5">
<img
class="img-fluid rounded mb-5 mb-lg-0"
src="img/about-1.png"
alt=""
/>
</div>
<div class="col-lg-7">
<p class="section-title pr-5">
<span class="pr-2">Learn About Us</span>
</p>
<h1 class="mb-4">Bringing Every Store to Your Door</h1>
<p>
EzyShop is your go-to platform for shopping locally from the
comfort of your home. Whether you're looking for products from
your favorite local store or the nearest mall, we make it easy to
browse, order, and have it delivered to you fast. Enjoy seamless
shopping with access to the stores you love, all in one place.
</p>
<div class="row pt-2 pb-4">
<div class="col-6 col-md-4">
<img class="img-fluid rounded" src="img/about-2.png" alt="" />
</div>
<div class="col-6 col-md-8">
<ul class="list-inline m-0">
<li class="py-2 border-top border-bottom">
<i class="fa fa-check text-primary mr-3"></i>Shop from local
stores or malls near you
</li>
<li class="py-2 border-bottom">
<i class="fa fa-check text-primary mr-3"></i>Quick, reliable
delivery from the stores you trust
</li>
<li class="py-2 border-bottom">
<i class="fa fa-check text-primary mr-3"></i>Exclusive
offers, only available through EzyShop
</li>
</ul>
</div>
</div>
<a onclick="exploreShops()" class="btn btn-primary mt-2 py-2 px-4"
>Explore Stores</a
>
</div>
</div>
</div>
</div>
<!-- About End -->
<!-- Class Start -->
<div class="container-fluid pt-5">
<div class="container">
<div class="text-center pb-2">
<p class="section-title px-5">
<span class="px-2">Trending Deals</span>
</p>
<h1 class="mb-4">Shop for Your Favorite Products</h1>
</div>
<div class="row">
<div class="col-lg-4 mb-5">
<div class="card card-hover border-0 bg-light shadow-sm pb-2">
<img class="card-img-top mb-2" src="img/class-1.png" alt="" />
<div class="card-body text-center">
<h4 class="card-title">Fashion & Accessories</h4>
<p class="card-text">
Explore the latest trends with exclusive offers on clothing,
shoes and accessories.
</p>
</div>
<div class="card-footer bg-transparent py-4 px-5">
<div class="row border-bottom">
<div class="col-6 py-1 text-right border-right">
<strong>Category</strong>
</div>
<div class="col-6 py-1">Fashion</div>
</div>
<div class="row border-bottom">
<div class="col-6 py-1 text-right border-right">
<strong>Offers Available</strong>
</div>
<div class="col-6 py-1">50+ Brands</div>
</div>
<div class="row border-bottom">
<div class="col-6 py-1 text-right border-right">
<strong>Delivery Time</strong>
</div>
<div class="col-6 py-1">Same Day Delivery</div>
</div>
<div class="row">
<div class="col-6 py-1 text-right border-right">
<strong>Starting From</strong>
</div>
<div class="col-6 py-1">$10</div>
</div>
</div>
<a
onclick="shopNow('fashion')"
class="btn btn-primary px-4 mx-auto mb-4"
>Shop Now</a
>
</div>
</div>
<div class="col-lg-4 mb-5">
<div class="card card-hover border-0 bg-light shadow-sm pb-2">
<img class="card-img-top mb-2" src="img/class-2.png" alt="" />
<div class="card-body text-center">
<h4 class="card-title">Electronics & Gadgets</h4>
<p class="card-text">
Shop for the latest electronics and gadgets from top brands at
the best prices.
</p>
</div>
<div class="card-footer bg-transparent py-4 px-5">
<div class="row border-bottom">
<div class="col-6 py-1 text-right border-right">
<strong>Category</strong>
</div>
<div class="col-6 py-1">Electronics</div>
</div>
<div class="row border-bottom">
<div class="col-6 py-1 text-right border-right">
<strong>Brands Available</strong>
</div>
<div class="col-6 py-1">20+ Brands</div>
</div>
<div class="row border-bottom">
<div class="col-6 py-1 text-right border-right">
<strong>Delivery Time</strong>
</div>
<div class="col-6 py-1">Same Day Delivery</div>
</div>
<div class="row">
<div class="col-6 py-1 text-right border-right">
<strong>Starting From</strong>
</div>
<div class="col-6 py-1">$25</div>
</div>
</div>
<a
onclick="shopNow('electronics')"
class="btn btn-primary px-4 mx-auto mb-4"
>Shop Now</a
>
</div>
</div>
<div class="col-lg-4 mb-5">
<div class="card card-hover border-0 bg-light shadow-sm pb-2">
<img class="card-img-top mb-2" src="img/class-3.png" alt="" />
<div class="card-body text-center">
<h4 class="card-title">Groceries & Essentials</h4>
<p class="card-text">
Order fresh groceries and daily essentials from trusted local
stores, delivered to your doorstep.
</p>
</div>
<div class="card-footer bg-transparent py-4 px-5">
<div class="row border-bottom">
<div class="col-6 py-1 text-right border-right">
<strong>Category</strong>
</div>
<div class="col-6 py-1">Grocery</div>
</div>
<div class="row border-bottom">
<div class="col-6 py-1 text-right border-right">
<strong>Stores</strong>
</div>
<div class="col-6 py-1">30+ Stores</div>
</div>
<div class="row border-bottom">
<div class="col-6 py-1 text-right border-right">
<strong>Delivery Time</strong>
</div>
<div class="col-6 py-1">30 Minute Delivery</div>
</div>
<div class="row">
<div class="col-6 py-1 text-right border-right">
<strong>Starting From</strong>
</div>
<div class="col-6 py-1">$2</div>
</div>
</div>
<a
onclick="shopNow('groceries')"
class="btn btn-primary px-4 mx-auto mb-4"
>Order Now</a
>
</div>
</div>
</div>
</div>
</div>
<!-- Class End -->
<!-- Registration Start -->
<div class="container-fluid py-5">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-7 mb-5 mb-lg-0">
<p class="section-title pr-5">
<span class="pr-2">Contact Us</span>
</p>
<h1 class="mb-4">Get in Touch with ezyshop</h1>
<p>
Have questions about your order, our services, or need assistance
with anything? We're here to help! Reach out to us, and we'll get
back to you as soon as possible.
</p>
<ul class="list-inline m-0">
<li class="py-2">
<i class="fa fa-check text-success mr-3"></i>Fast and Reliable
Customer Support
</li>
<li class="py-2">
<i class="fa fa-check text-success mr-3"></i>Personalized
Shopping Experience
</li>
<li class="py-2">
<i class="fa fa-check text-success mr-3"></i>Real-Time Order
Tracking
</li>
</ul>
<a href="" class="btn btn-primary mt-4 py-2 px-4">Send Message</a>
</div>
<div class="col-lg-5">
<div class="card border-0">
<div class="card-header bg-secondary text-center p-4">
<h1 class="text-white m-0">Fill Form</h1>
</div>
<div class="card-body rounded-bottom bg-primary p-5">
<form>
<div class="form-group">
<input
type="text"
class="form-control border-0 p-4"
placeholder="Your Name"
required="required"
/>
</div>
<div class="form-group">
<input
type="email"
class="form-control border-0 p-4"
placeholder="Your Email"
required="required"
/>
</div>
<div class="form-group">
<select
class="custom-select border-0 px-4"
style="height: 47px"
>
<option selected>Select A Section</option>
<option value="1">Order Status</option>
<option value="2">Product Information</option>
<option value="3">Delivery Issues</option>
<option value="4">Feedback/Suggestions</option>
<option value="3">Other</option>
</select>
</div>
<div>
<button
class="btn btn-secondary btn-block border-0 py-3"
type="submit"
>
Submit
</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Registration End -->
<!-- Team Start -->
<div class="container-fluid pt-5">
<div class="container">
<div class="text-center pb-2">
<p class="section-title px-5">
<span class="px-2">Ezyshop Founder</span>
</p>
<h1 class="mb-4">Meet our Founder</h1>
</div>
<div class="row justify-content-center">
<div class="col-md-6 col-lg-3 text-center team mb-5">
<div
class="position-relative overflow-hidden mb-4"
style="border-radius: 100%"
>
<img class="img-fluid w-100" src="img/aizz pic.jpeg" alt="" />
<div
class="team-social d-flex align-items-center justify-content-center w-100 h-100 position-absolute"
>
<a
class="btn btn-outline-light text-center mr-2 px-0"
style="width: 38px; height: 38px"
href="https://github.com/mdazfar2"
><i class="fab fa-github"></i
></a>
<a
class="btn btn-outline-light text-center px-0"
style="width: 38px; height: 38px"
href="https://www.linkedin.com/in/md-azfar-alam/"
><i class="fab fa-linkedin-in"></i
></a>
<a
class="btn btn-outline-light text-center mr-2 px-0"
style="width: 38px; height: 38px"
href="http://azfaralam.xyz/"
><i class="fa-solid fa-link"></i
></a>
</div>
</div>
<h4>Azfar Alam</h4>
<i>Founder & CEO</i>
</div>
</div>
</div>
</div>
<!-- Team End -->
<!-- Testimonial Start -->
<div class="container-fluid py-5">
<div class="container p-0">
<div class="text-center pb-2">
<p class="section-title px-5">
<span class="px-2">Testimonial</span>
</p>
<h1 class="mb-4">Customer Reviews!</h1>
</div>
<div class="owl-carousel testimonial-carousel">
<div class="testimonial-item px-3">
<div class="bg-light shadow-sm rounded mb-4 p-4">
<h3 class="fas fa-quote-left text-primary mr-3"></h3>
ezyshop makes my grocery shopping so much easier. I can compare
prices from multiple stores and get my essentials delivered right
to my doorstep. It’s a game-changer for busy families!
</div>
<div class="d-flex align-items-center">
<img
class="rounded-circle"
src="img/testimonial-1.jpg"
style="width: 70px; height: 70px"
alt="Image"
/>
<div class="pl-3">
<h5>Rajesh Sharma</h5>
<i>Frequent Shopper</i>
</div>
</div>
</div>
<div class="testimonial-item px-3">
<div class="bg-light shadow-sm rounded mb-4 p-4">
<h3 class="fas fa-quote-left text-primary mr-3"></h3>
The convenience of browsing multiple stores at once is amazing.
ezyshop saves me time and helps me find great deals. The
user-friendly app makes everything a breeze!
</div>
<div class="d-flex align-items-center">
<img
class="rounded-circle"
src="img/testimonial-2.jpg"
style="width: 70px; height: 70px"
alt="Image"
/>
<div class="pl-3">
<h5>Anita Desai</h5>
<i>Online Shopper</i>
</div>
</div>
</div>
<div class="testimonial-item px-3">
<div class="bg-light shadow-sm rounded mb-4 p-4">
<h3 class="fas fa-quote-left text-primary mr-3"></h3>
I often need supplies for my store, and ezyshop helps me place
bulk orders quickly. It’s reliable and efficient—exactly what I
need for my business.
</div>
<div class="d-flex align-items-center">
<img
class="rounded-circle"
src="img/testimonial-3.jpg"
style="width: 70px; height: 70px"
alt="Image"
/>
<div class="pl-3">
<h5>Manoj Gupta</h5>
<i>Local Business Owner</i>
</div>
</div>
</div>
<div class="testimonial-item px-3">
<div class="bg-light shadow-sm rounded mb-4 p-4">
<h3 class="fas fa-quote-left text-primary mr-3"></h3>
Managing work and kids is tough, but ezyshop has been a lifesaver.
I can order everything from groceries to household items without
leaving home. Highly recommended!
</div>
<div class="d-flex align-items-center">
<img
class="rounded-circle"
src="img/testimonial-4.jpg"
style="width: 70px; height: 70px"
alt="Image"
/>
<div class="pl-3">
<h5>Priya Nair</h5>
<i>Mother of Two</i>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Testimonial End -->
<!-- Blog Start -->
<div class="container-fluid pt-5">
<div class="container">
<div class="text-center pb-2">
<p class="section-title px-5">
<span class="px-2">Latest Blog</span>
</p>
<h1 class="mb-4">Latest Articles From Blog</h1>
</div>
<div class="row pb-3">
<div class="col-lg-4 mb-4">
<div class="card card-hover border-0 shadow-sm mb-2">
<img class="card-img-top mb-2" src="img/blog-1.png" alt="" />
<div class="card-body bg-light text-center p-4">
<h4 class="">10 Ways to Save on Groceries This Month</h4>
<div class="d-flex justify-content-center mb-3">
<small class="mr-3"
><i class="fa fa-user text-primary"></i> Admin</small
>
<small class="mr-3"
><i class="fa fa-folder text-primary"></i>Shopping
Tips</small
>
<small class="mr-3"
><i class="fa fa-comments text-primary"></i>15</small
>
</div>
<p>
Finding the best deals on groceries has never been easier!
Check out these 10 insider tips to help you cut down on your
monthly food budget without sacrificing quality.
</p>
<a href="" class="btn btn-primary px-4 mx-auto my-2"
>Read More</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card card-hover border-0 shadow-sm mb-2">
<img class="card-img-top mb-2" src="img/blog-2.png" alt="" />
<div class="card-body bg-light text-center p-4">
<h4 class="">
How to Compare Prices and Find Deals Across Multiple Stores
</h4>
<div class="d-flex justify-content-center mb-3">
<small class="mr-3"
><i class="fa fa-user text-primary"></i> Admin</small
>
<small class="mr-3"
><i class="fa fa-folder text-primary"></i> Online
Shopping</small
>
<small class="mr-3"
><i class="fa fa-comments text-primary"></i> 18</small
>
</div>
<p>
Did you know ezyshop allows you to compare prices between
different stores? Learn how to make the most of this feature
and get the best deals on everything you need.
</p>
<a href="" class="btn btn-primary px-4 mx-auto my-2"
>Read More</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card card-hover border-0 shadow-sm mb-2">
<img class="card-img-top mb-2" src="img/blog-3.png" alt="" />
<div class="card-body bg-light text-center p-4">
<h4 class="">
Best Local Stores for Organic Products in Your Area
</h4>
<div class="d-flex justify-content-center mb-3">
<small class="mr-3"
><i class="fa fa-user text-primary"></i> Admin</small
>
<small class="mr-3"
><i class="fa fa-folder text-primary"></i> Local
Shopping</small
>
<small class="mr-3"
><i class="fa fa-comments text-primary"></i> 15</small
>
</div>
<p>
Support local stores while staying healthy! Here’s a guide to
the best places to find organic groceries near you, all
accessible through ezyshop.
</p>
<a href="" class="btn btn-primary px-4 mx-auto my-2"
>Read More</a
>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Blog End -->
<!-- Footer Start -->
<div
class="container-fluid bg-secondary text-white mt-5 py-5 px-sm-3 px-md-5"
>
<div class="row pt-5">
<div class="col-lg-3 col-md-6 mb-5">
<a
href=""
class="navbar-brand font-weight-bold text-primary m-0 mb-4 p-0"
style="font-size: 40px; line-height: 40px"
>
<img style="width: 80px" src="/img/ezyshop.png" alt="logo" />
<span class="text-white">Ezyshop</span>
</a>
<p>
EzyShop is a user-friendly platform that connects you to local
stores, offering a seamless shopping experience. Compare prices,
access exclusive deals, and enjoy hassle-free deliveries for
groceries, essentials, and organic products—all in one app.
</p>
<div class="d-flex justify-content-start mt-4">
<a
class="btn btn-outline-primary rounded-circle text-center mr-2 px-0"
style="width: 38px; height: 38px"
href="#"
><i class="fab fa-twitter"></i
></a>
<a
class="btn btn-outline-primary rounded-circle text-center mr-2 px-0"
style="width: 38px; height: 38px"
href="#"
><i class="fab fa-facebook-f"></i
></a>
<a
class="btn btn-outline-primary rounded-circle text-center mr-2 px-0"
style="width: 38px; height: 38px"
href="#"
><i class="fab fa-linkedin-in"></i
></a>
<a
class="btn btn-outline-primary rounded-circle text-center mr-2 px-0"
style="width: 38px; height: 38px"
href="#"
><i class="fab fa-instagram"></i
></a>
</div>
</div>
<div class="col-lg-3 col-md-6 mb-5">
<h3 class="text-primary mb-4">Get In Touch</h3>
<div class="d-flex hov">
<a href="https://www.google.com/maps/place/Jaipur,+Rajasthan/@26.8851151,75.6257468,11z/data=!3m1!4b1!4m6!3m5!1s0x396c4adf4c57e281:0xce1c63a0cf22e09!8m2!3d26.9124336!4d75.7872709!16zL20vMDE2NzIy?entry=ttu&g_ep=EgoyMDI0MTAwMi4xIKXMDSoASAFQAw%3D%3D">
<h4 class="fa fa-map-marker-alt text-primary icon"></h4></a>
<div class="pl-3 cont">
<a href="https://hi.wikipedia.org/wiki/%E0%A4%9C%E0%A4%AF%E0%A4%AA%E0%A5%81%E0%A4%B0"><h5 class="text-white">Address</h5>
<p>Jaipur, Rajasthan</p></a>
</div>
</div>
<div class="d-flex hov">
<a href="mailto:ezyshop@gmail.com">
<h4 class="fa fa-envelope text-primary icon"></h4>
<div class="pl-3 cont">
<h5 class="text-white">Email</h5>
<p>ezyshop@gmail.com</p>
</a>
</div>
</div>
<div class="d-flex hov">
<a href="tel:7739317870">
<h4 class="fa fa-phone-alt text-primary icon"></h4>
<div class="pl-3 cont">
<h5 class="text-white">Phone</h5>
<p>+91 7739317870</p>
</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mb-5">
<h3 class="text-primary mb-4">Quick Links</h3>
<div class="d-flex flex-column justify-content-start">
<a class="text-white mb-2" href="/index.html"
><i class="fa fa-angle-right mr-2"></i>Home</a
>
<a class="text-white mb-2" href="/about.html"
><i class="fa fa-angle-right mr-2"></i>About Us</a
>
<a class="text-white mb-2" href="/category.html"
><i class="fa fa-angle-right mr-2"></i>Our Categories</a
>
<a class="text-white mb-2" href="/team.html"
><i class="fa fa-angle-right mr-2"></i>Our Teams</a
>
<a class="text-white mb-2" href="/blog.html"
><i class="fa fa-angle-right mr-2"></i>Our Blog</a
>
<a class="text-white" href="/contact.html"
><i class="fa fa-angle-right mr-2"></i>Contact Us</a
>
</div>
</div>
<div class="col-lg-3 col-md-6 mb-5">
<h3 class="text-primary mb-4">Newsletter</h3>
<form action="">
<div class="form-group">
<input
type="text"
class="form-control border-0 py-4"
placeholder="Your Name"
required="required"
/>
</div>
<div class="form-group">
<input
type="email"
class="form-control border-0 py-4"
placeholder="Your Email"
required="required"
/>
</div>
<div>
<button
class="btn btn-primary btn-block border-0 py-3"
type="submit"
>
Submit Now
</button>
</div>
</form>
</div>
</div>
<div
class="container-fluid pt-5"
style="border-top: 1px solid rgba(23, 162, 184, 0.2)"
>
<p class="m-0 text-center text-white">
© <a class="text-primary font-weight-bold" href="#">Ezyshop</a>.
All Rights Reserved. Designed by
<a
class="text-primary font-weight-bold"
href="https://www.azfaralam.xyz/"
>Azfar Alam</a
>
</p>
</div>
</div>
<!-- Footer End -->
<!-- Back to Top -->
<a href="#" class="btn btn-primary p-3 back-to-top"
><i class="fa fa-angle-double-up"></i
></a>
<!-- JavaScript Libraries -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.bundle.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<script src="lib/isotope/isotope.pkgd.min.js"></script>
<script src="lib/lightbox/js/lightbox.min.js"></script>
<!-- Auth JavaScript-->
<script src="js/auth.js"></script>
<!-- Contact Javascript File -->
<script src="mail/jqBootstrapValidation.min.js"></script>
<script src="mail/contact.js"></script>
<!-- Template Javascript -->
<script src="js/main.js"></script>
<script>
document.addEventListener("DOMContentLoaded", function () {
const authButton = document.getElementById("authButton");
const currentUser = localStorage.getItem("currentUser");
// Check if there's a logged-in user
if (currentUser) {
authButton.textContent = currentUser; // Change button text to username
authButton.href = "#"; // Optionally, change the link to something else or remove it
authButton.classList.add("btn-secondary"); // Optionally change button style
}
// Add event listener for logout
authButton.addEventListener("click", function () {
if (currentUser) {
// Show confirmation dialog before logging out
const confirmLogout = confirm("Do you want to logout?");
if (confirmLogout) {
// If confirmed, remove the current user from localStorage
localStorage.removeItem("currentUser");
// Reload the page to reset the button to "Login/SignUp"
location.reload();
}
} else {
// Redirect to login page if no user is logged in
window.location.href = "RegisterPages/register.html"; // Update with your login page URL
}
});
});
</script>
</body>
</html>