-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
659 lines (595 loc) · 25.4 KB
/
index.php
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
<?php
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>FarmFresh - Home</title>
<link rel="icon" href="img/Fevicon.png" type="image/png">
<link rel="stylesheet" href="vendors/bootstrap/bootstrap.min.css">
<link rel="stylesheet" href="vendors/themify-icons/themify-icons.css">
<link rel="stylesheet" href="vendors/owl-carousel/owl.theme.default.min.css">
<link rel="stylesheet" href="vendors/owl-carousel/owl.carousel.min.css">
<link rel="stylesheet" href="vendors/Magnific-Popup/magnific-popup.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!--================ Header Menu Area start =================-->
<header class="header_area">
<div class="main_menu">
<nav class="navbar navbar-expand-lg navbar-light">
<div class="container box_1620">
<a class="navbar-brand logo_h" href="index.html"><b><h3>FarmFresh</h3></b></a>
<?php
if(isset($_SESSION['customerName'])){
$str="<p class=\"navbar-brand logo_h\"><b><h5>HI, ".strtoupper($_SESSION['customerName']).".</h5></b></p>";
echo $str;
}
if(isset($_SESSION['vendorName'])){
$str="<p class=\"navbar-brand logo_h\"><b><h5>HI, ".strtoupper($_SESSION['vendorName']).".</h5></b></p>";
echo $str;
}
?>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="collapse navbar-collapse offset" id="navbarSupportedContent">
<ul class="nav navbar-nav menu_nav justify-content-end">
<li class="nav-item active"><a class="nav-link" href="">Home</a></li>
<?php
if(isset($_SESSION['customerName'])){
$str="<li class=\"nav-item\"><a href=\"productsPageForCustomer.php\" class=\"nav-link\" >Products</a></li>";
echo $str;
}elseif(isset($_SESSION['vendorName'])){
$str="<li class=\"nav-item\"><a href=\"productsPageForVendor.php\" class=\"nav-link\" >Products</a></li>";
echo $str;
}
?>
<li class="nav-item"><a href="#review-div" class="nav-link" >Reviews</a></li>
<?php
if(!isset($_SESSION['customerName']) AND !isset($_SESSION['vendorName'])){
$str='
<li class="nav-item submenu dropdown">
<a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Register</a>
<ul class="dropdown-menu">
<li class="nav-item"><a class="nav-link" href="registerCustomer.php"> Customer</a></li>
<li class="nav-item"><a class="nav-link" href="registerVendor.php">Vendor</a></li>
</ul>
</li>
<li class="nav-item submenu dropdown">
<a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true"
aria-expanded="false">Login</a>
<ul class="dropdown-menu">
<li class="nav-item"><a class="nav-link" href="loginCustomer.php">Customer Login</a></li>
<li class="nav-item"><a class="nav-link" href="loginVendor.php">Vendor Login</a></li>
<li class="nav-item"><a class="nav-link" href="loginFarmer.php">Farmer Login</a></li>
<li class="nav-item"><a class="nav-link" href="loginAdministrator.php">Admin Login</a></li>
</ul>
</li>
';
echo $str;
}
?>
<li class="nav-item"><a class="nav-link" href="">Contact</a></li>
<?php
if(isset($_SESSION['customerName']) OR isset($_SESSION['vendorName'])){
$str="<li class=\"nav-item\"><a class=\"nav-link\" href=\"logoutClicked.php\">Logout</a></li>";
echo $str;
}
?>
</ul>
</div>
</div>
</nav>
</div>
</header>
<!--================Header Menu Area =================-->
<!--================Hero Banner Section start =================-->
<section class="hero-banner">
<div class="hero-wrapper">
<div class="hero-left">
<h1 class="hero-title">Foods the <br> most precious things</h1>
<div class="d-sm-flex flex-wrap">
<a class="button button-hero button-shadow" href="productsPage.php">Buy Now</a>
</div>
<ul class="hero-info d-none d-lg-block">
<li>
<img src="img/banner/fas-service-icon.png" alt=""><br><br>
<h5>Directly from <br> farm</h5>
</li>
<li>
<img src="img/banner/fresh-food-icon.png" alt="">
<h4>Fresh food</h4>
</li>
<li>
<img src="img/banner/support-icon.png" alt="">
<h4>Customer support</h4>
</li>
</ul>
</div>
<div class="hero-right">
<div class="owl-carousel owl-theme hero-carousel">
<div class="hero-carousel-item">
<img class="img-fluid" height="80" src="img/banner/hero-banner1.png" alt="">
</div>
<div class="hero-carousel-item">
<img class="img-fluid" src="img/banner/hero-banner2.png" alt="">
</div>
<div class="hero-carousel-item">
<img class="img-fluid" src="img/banner/hero-banner1.png" alt="">
</div>
<div class="hero-carousel-item">
<img class="img-fluid" src="img/banner/hero-banner2.png" alt="">
</div>
</div>
</div>
<ul class="social-icons d-none d-lg-block">
<li><a href="#"><i class="ti-facebook"></i></a></li>
<li><a href="#"><i class="ti-twitter"></i></a></li>
<li><a href="#"><i class="ti-instagram"></i></a></li>
</ul>
</div>
</section>
<!--================Hero Banner Section end =================-->
<!--================About Section start =================-->
<section class="about section-margin pb-xl-70">
<div class="container">
<div class="row">
<div class="col-md-6 col-xl-6 mb-5 mb-md-0 pb-5 pb-md-0">
<div class="img-styleBox">
<div class="styleBox-border">
<img class="styleBox-img1 img-fluid" src="img/home/about-img1.jpg" alt="" height="450px" width="450px">
</div>
<img class="styleBox-img2 img-fluid" src="img/home/about-img2.jpg" alt="" height="300px" width="300px">
</div>
</div>
<div class="col-md-6 pl-md-5 pl-xl-0 offset-xl-1 col-xl-5">
<div class="section-intro mb-lg-4">
<h4 class="intro-title">About Us</h4>
<h2>We speak the good food language</h2>
</div>
<p> Eat Healthy Live Healthy.<br> We provide the farm-fresh directly from the farmers farm to the consumers and the buyers. Here there is no intervention of any third party, the farmer sell their produce, and connect with the buyers all over the India. Because of which not only the farmers are benefited with the better price for their produce but also the buyers and the consumers are benefited with the freshness of the produce. </p>
<!-- <a class="button button-shadow mt-2 mt-lg-4" href="">Learn More</a> -->
</div>
</div>
</div>
</section>
<!--================About Section End =================-->
<!--================Featured Section Start =================-->
<section class="section-margin mb-lg-100">
<div class="container">
<div class="section-intro mb-75px">
<h4 class="intro-title">Featured Food</h4>
<h2>Fresh taste and great price</h2>
</div>
<div class="owl-carousel owl-theme featured-carousel">
<div class="featured-item">
<img class="card-img rounded-0" src="img/home/featured1.png" alt="">
<div class="item-body">
<a href="productPage.php">
<h3>Cabbage</h3>
</a>
<p>Vegetable</p>
<div class="d-flex justify-content-between">
<ul class="rating-star">
<li><i class="ti-star"></i></li>
<li><i class="ti-star"></i></li>
<li><i class="ti-star"></i></li>
<li><i class="ti-star"></i></li>
<li><i class="ti-star"></i></li>
</ul>
<h3 class="price-tag">Rs.35</h3>
</div>
</div>
</div>
<div class="featured-item">
<img class="card-img rounded-0" src="img/home/featured2.png" alt="">
<div class="item-body">
<a href="productsPage.php">
<h3>Tomato</h3>
</a>
<p>Fruit</p>
<div class="d-flex justify-content-between">
<ul class="rating-star">
<li><i class="ti-star"></i></li>
<li><i class="ti-star"></i></li>
<li><i class="ti-star"></i></li>
<li><i class="ti-star"></i></li>
<li><i class="ti-star"></i></li>
</ul>
<h3 class="price-tag">Rs.30</h3>
</div>
</div>
</div>
<div class="featured-item">
<img class="card-img rounded-0" src="img/home/featured3.png" alt="">
<div class="item-body">
<a href="productsPage.php">
<h3>Corn</h3>
</a>
<p>Vegetable</p>
<div class="d-flex justify-content-between">
<ul class="rating-star">
<li><i class="ti-star"></i></li>
<li><i class="ti-star"></i></li>
<li><i class="ti-star"></i></li>
<li><i class="ti-star"></i></li>
<li><i class="ti-star"></i></li>
</ul>
<h3 class="price-tag">Rs.20</h3>
</div>
</div>
</div>
<div class="featured-item">
<img class="card-img rounded-0" src="img/home/featured4.png" alt="">
<div class="item-body">
<a href="productsPage.php">
<h3>Onion</h3>
</a>
<p>Vegetable</p>
<div class="d-flex justify-content-between">
<ul class="rating-star">
<li><i class="ti-star"></i></li>
<li><i class="ti-star"></i></li>
<li><i class="ti-star"></i></li>
<li><i class="ti-star"></i></li>
<li><i class="ti-star"></i></li>
</ul>
<h3 class="price-tag">Rs.35</h3>
</div>
</div>
</div>
</div>
</div>
</section>
<!--================Featured Section End =================-->
<!--================Offer Section Start =================-->
<section class="bg-lightGray section-padding">
<div class="container">
<div class="row no-gutters">
<div class="col-sm">
<img class="card-img rounded-0" src="img/home/offer-img.png" alt="">
</div>
<div class="col-sm">
<div class="offer-card offer-card-position">
<h3>Vegetable Basket</h3>
<h2>50% OFF</h2>
<h10>Onion+Tomato+Coriander+Spinach+Cabbage</h10><br><br>
<!-- <a class="button" href="#">Add to cart</a> -->
</div>
</div>
</div>
</div>
</section>
<!--================Offer Section End =================-->
<!--================Food menu section start =================-->
<section class="section-margin">
<div class="container">
<div class="section-intro mb-75px">
<h4 class="intro-title">Groceries</h4>
<h2>Fresh item</h2>
</div>
<div class="row">
<div class="col-lg-6">
<div class="media align-items-center food-card">
<img class="mr-3 mr-sm-4" src="img/home/food1.png" alt="">
<div class="media-body">
<div class="d-flex justify-content-between food-card-title">
<h4>Carrots</h4>
<h3 class="price-tag">Rs.30/kg</h3>
</div>
<p>Fresh crips carrots</p>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="media align-items-center food-card">
<img class="mr-3 mr-sm-4" src="img/home/food2.png" alt="">
<div class="media-body">
<div class="d-flex justify-content-between food-card-title">
<h4>Brocoli</h4>
<h3 class="price-tag">Rs.50/kg</h3>
</div>
<p>Sweet and leafy</p>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="media align-items-center food-card">
<img class="mr-3 mr-sm-4" src="img/home/food3.png" alt="">
<div class="media-body">
<div class="d-flex justify-content-between food-card-title">
<h4>Chilly</h4>
<h3 class="price-tag">Rs.10/100g</h3>
</div>
<p>Spicy af</p>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="media align-items-center food-card">
<img class="mr-3 mr-sm-4" src="img/home/food4.png" alt="">
<div class="media-body">
<div class="d-flex justify-content-between food-card-title">
<h4>Wheat</h4>
<h3 class="price-tag">Rs.37/kg</h3>
</div>
<p>Freshly from farm</p>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="media align-items-center food-card">
<img class="mr-3 mr-sm-4" src="img/home/food5.png" alt="">
<div class="media-body">
<div class="d-flex justify-content-between food-card-title">
<h4>Potato</h4>
<h3 class="price-tag">Rs.20/kg</h3>
</div>
<p>Perfect for fries</p>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="media align-items-center food-card">
<img class="mr-3 mr-sm-4" src="img/home/food6.png" alt="">
<div class="media-body">
<div class="d-flex justify-content-between food-card-title">
<h4>Capsicum</h4>
<h3 class="price-tag">Rs.10/kg</h3>
</div>
<p>Juicy and fresh</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--================Food menu section end =================-->
<!--================CTA section start =================-->
<section class="cta-area text-center">
<div class="container">
<h2>Farm workers are society's canaries. Farm workers and their children demonstrate the effects of pesticide poisoning before anyone else.</h2>
<p>-Cesar Chavez</p>
<!-- <a class="button" href="#">Buy Now</a> -->
</div>
</section>
<!--================CTA section end =================-->
<!--================Chef section start =================-->
<section class="section-margin">
<div class="container">
<div class="section-intro mb-75px">
<h4 class="intro-title">Our Farmers</h4>
<h2>Prominent members</h2>
</div>
<div class="row">
<div class="col-sm-6 col-lg-4 mb-4 mb-lg-0">
<div class="chef-card">
<img class="card-img rounded-0" src="img/home/chef-1.png" alt="">
<div class="chef-footer">
<h4>Shri K.V.Rakesh </h4>
<p>Farmer & Family</p>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 mb-4 mb-lg-0">
<div class="chef-card">
<img class="card-img rounded-0" src="img/home/chef-2.png" alt="">
<div class="chef-footer">
<h4>Shri Denanath Vithalrao</h4>
<p>Farmer</p>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 mb-4 mb-lg-0">
<div class="chef-card">
<img class="card-img rounded-0" src="img/home/chef-3.png" alt="">
<div class="chef-footer">
<h4>Shri Keshav Shinde</h4>
<p>Farmer</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--================Chef section end =================-->
<!--================Reservation section start =================-->
<section class="bg-lightGray section-padding">
<div class="container">
<div class="row align-items-center">
<div class="col-md-6 col-xl-5 mb-4 mb-md-0">
<div class="section-intro">
<h4 class="intro-title">Feedback</h4>
<h2 class="mb-3">Help us to improve our services</h2>
</div>
</div>
<div class="col-md-6 offset-xl-2 col-xl-5">
<div class="search-wrapper">
<h3>Review</h3>
<form class="search-form" action="#">
<div class="form-group">
<div class="input-group">
<input type="text" class="form-control" placeholder="Your Name">
<div class="input-group-append">
<span class="input-group-text"><i class="ti-user"></i></span>
</div>
</div>
</div>
<div class="form-group">
<div class="input-group">
<input type="text" class="form-control" placeholder="Email Address">
<div class="input-group-append">
<span class="input-group-text"><i class="ti-email"></i></span>
</div>
</div>
</div>
<div class="form-group">
<div class="input-group">
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3" placeholder="">
</textarea>
</div>
</div>
<div class="form-group form-group-position">
<button class="button border-0" type="submit">Submit</button>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<!--================Reservation section end =================-->
<!--================Blog section start =================-->
<section class="section-margin">
<div class="container">
<div class="section-intro mb-75px">
<h4 class="intro-title">Reviews</h4>
<h2>Latest reviews</h2>
</div>
<div class="row" id="review-div">
<div class="col-sm-6 col-lg-4 mb-4 mb-lg-0">
<div class="card-blog">
<img class="card-img rounded-0" src="img/blog/blog1.png" alt="">
<div class="blog-body">
<a href="#">
<h3><a href="#">Vivek Mishra</a></h3>
<h3><a href="#">5/5</a></h3>
</a>
<ul class="blog-info">
<li>After reading about 50 reviews up here, I've learned a few things... Either people are just RIDICULOUSLY PICKY, I'm blessed FarmFresh deliver at my location, or I'm just an uncultured noob who doesn't have the same finely-tuned senses as most everybody else commenting here. First, the produce is UNBELIEVABLY FRESH. I bought a few salad bags and boxes, both of which still did not have any trace of wilting or spoilage, even a few days past the sell-by date.</li>
</ul>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 mb-4 mb-lg-0">
<div class="card-blog">
<img class="card-img rounded-0" src="img/blog/blog2.png" alt="">
<div class="blog-body">
<a href="#">
<h3><a href="#">Ravindra Kumar</a></h3>
<h3><a href="#">5/5</a></h3>
</a>
<ul class="blog-info">
<li>Have all of FarmFresh with order from. Can pick delivery time, same day, in one hour (for a small fee) or two hour window, free delivery. Can't beat that. The best, in my opinion, and with FarmFresh I'm assured of the quality of the purchased products.</li>
</ul>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 mb-4 mb-lg-0">
<div class="card-blog">
<img class="card-img rounded-0" src="img/blog/blog3.png" alt="">
<div class="blog-body">
<a href="#">
<h3><a href="#">Karthik Pillai</a></h3>
<h3><a href="#">4/5</a></h3>
</a>
<ul class="blog-info">
<li>Whole Foods is ideal for quality, clean food choices and health products. I especially enjoy shopping here for holiday meals for the family!</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!--================Blog section end =================-->
<!-- ================ start footer Area ================= -->
<!-- <footer class="footer-area section-gap">
<div class="container">
<div class="row">
<div class="col-xl-2 col-sm-6 mb-4 mb-xl-0 single-footer-widget">
<h4>Top Products</h4>
<ul>
<li><a href="#">Managed Website</a></li>
<li><a href="#">Manage Reputation</a></li>
<li><a href="#">Power Tools</a></li>
<li><a href="#">Marketing Service</a></li>
</ul>
</div>
<div class="col-xl-2 col-sm-6 mb-4 mb-xl-0 single-footer-widget">
<h4>Quick Links</h4>
<ul>
<li><a href="#">Jobs</a></li>
<li><a href="#">Brand Assets</a></li>
<li><a href="#">Investor Relations</a></li>
<li><a href="#">Terms of Service</a></li>
</ul>
</div>
<div class="col-xl-2 col-sm-6 mb-4 mb-xl-0 single-footer-widget">
<h4>Features</h4>
<ul>
<li><a href="#">Jobs</a></li>
<li><a href="#">Brand Assets</a></li>
<li><a href="#">Investor Relations</a></li>
<li><a href="#">Terms of Service</a></li>
</ul>
</div>
<div class="col-xl-2 col-sm-6 mb-4 mb-xl-0 single-footer-widget">
<h4>Resources</h4>
<ul>
<li><a href="#">Guides</a></li>
<li><a href="#">Research</a></li>
<li><a href="#">Experts</a></li>
<li><a href="#">Agencies</a></li>
</ul>
</div>
<div class="col-xl-4 col-md-8 mb-4 mb-xl-0 single-footer-widget">
<h4>Newsletter</h4>
<p>You can trust us. we only send promo offers,</p>
<div class="form-wrap" id="mc_embed_signup">
<form target="_blank" action="https://spondonit.us12.list-manage.com/subscribe/post?u=1462626880ade1ac87bd9c93a&id=92a4423d01"
method="get">
<div class="input-group">
<input type="email" class="form-control" name="EMAIL" placeholder="Your Email Address" onfocus="this.placeholder = ''" onblur="this.placeholder = 'Your Email Address '">
<div class="input-group-append">
<button class="btn click-btn" type="submit">
<i class="ti-arrow-right"></i>
</button>
</div>
</div>
<div style="position: absolute; left: -5000px;">
<input name="b_36c4fd991d266f23781ded980_aefe40901a" tabindex="-1" value="" type="text">
</div>
<div class="info"></div>
</form>
</div>
</div>
</div>
<div class="footer-bottom row align-items-center text-center text-lg-left">
<p class="footer-text m-0 col-lg-8 col-md-12">
Copyright ©<script>document.write(new Date().getFullYear());</script> All rights reserved | This template is made with <i class="ti-heart" aria-hidden="true"></i> by <a href="#" target="_blank">FarmFresh</a>
</p>
<div class="col-lg-4 col-md-12 text-center text-lg-right footer-social">
<a href="#"><i class="ti-facebook"></i></a>
<a href="#"><i class="ti-twitter-alt"></i></a>
<a href="#"><i class="ti-dribbble"></i></a>
<a href="#"><i class="ti-linkedin"></i></a>
</div>
</div>
</div>
</footer> -->
<footer class="footer-area section-gap">
<div class="container">
<div class="footer-bottom row align-items-center text-center text-lg-left">
<p class="footer-text m-0 col-lg-8 col-md-12">This website is made with <i class="ti-heart" aria-hidden="true"></i> by <a href="#">FarmFresh</a></p>
</div>
</div>
</footer>
<!-- ================ End footer Area ================= -->
<script src="vendors/jquery/jquery-3.2.1.min.js"></script>
<script src="vendors/bootstrap/bootstrap.bundle.min.js"></script>
<script src="vendors/owl-carousel/owl.carousel.min.js"></script>
<script src="vendors/nice-select/jquery.nice-select.min.js"></script>
<script src="vendors/Magnific-Popup/jquery.magnific-popup.min.js"></script>
<script src="js/jquery.ajaxchimp.min.js"></script>
<script src="js/mail-script.js"></script>
<script src="js/main.js"></script>
</body>
</html>