-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
358 lines (335 loc) · 15.2 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
<?php
// include functions file
include_once './functions/functions.php';
?>
<!DOCTYPE html>
<html lang="en" itemscope itemtype="https://schema.org/WebPage">
<head>
<title>Listify - Comprehansive Listing App</title>
<?php include_once './includes/_head.php'; ?>
</head>
<body class="index-page">
<?php
// include the header file
include_once './includes/_navbar.php';
?>
<!-- ========== Start Hero ========== -->
<header class="header-2">
<div class="page-header min-vh-100 relative" style="background-image: url('./assets/img/curved-images/curved.jpg')">
<div class="container px-4 text-center">
<div class="row">
<div class="col-lg-7 text-center mx-auto">
<h2 class="text-white">Search Across Various Business</h2>
<p class="lead text-white text-sm">"Bringing order to the digital chaos"</p>
<div class="input-group my-4">
<span class="input-group-text"><i class="fas fa-search" aria-hidden="true"></i></span>
<input class="form-control" id="search-input" name="search" placeholder="Search for a business by name" type="search">
<div class="invalid-feedback" id="search-feedback"></div>
</div>
<div class="list-group text-center align-items-center" id="search-results">
<div id="search-spinner" class="spinner-border text-primary d-none" role="status">
<span class="visually-hidden">Loading...</span>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<p class="col-12 lead text-white text-capitalize font-font-weight-normal my-2">Browse our top categories</p>
<div class="col-auto text-center move-on-hover mb-2">
<a href="./category.php?category=restaurant">
<div class="d-flex flex-column bg-primary rounded-3 p-2">
<img src="assets/img/svgs/icons8_restaurant.svg" alt="Restaurants" height="50px">
<p class="text-white font-weight-bold text-xs">Restaurant's</p>
</div>
</a>
</div>
<div class="col-auto text-center move-on-hover mb-2">
<a href="./category.php?category=hospital">
<div class="d-flex flex-column bg-primary rounded-3 p-2">
<img src="assets/img/svgs/icons8_hospital_3.svg" alt="Hospitals" height="50px">
<p class="text-white font-weight-bold text-xs">Hospital's</p>
</div>
</a>
</div>
<div class="col-auto text-center move-on-hover mb-2">
<a href="./category.php?category=pharmacy">
<div class="d-flex flex-column bg-primary rounded-3 p-2">
<img src="assets/img/svgs/icons8_pharmacy_shop.svg" alt="Pharmacy" height="50px">
<span class="text-white font-weight-bold text-xs">Pharmacy's</p>
</div>
</a>
</div>
<div class="col-auto text-center move-on-hover mb-2">
<a href="./category.php?category=education">
<div class="d-flex flex-column bg-primary rounded-3 p-2">
<img src="assets/img/svgs/icons8_school.svg" alt="Education" height="50px">
<p class="text-white font-weight-bold text-xs">Education's</p>
</div>
</a>
</div>
<div class="col-auto text-center move-on-hover mb-2">
<a href="./category.php?category=atm">
<div class="d-flex flex-column bg-primary rounded-3 p-2">
<img src="assets/img/svgs/icons8_atm.svg" alt="ATMs" height="50px">
<p class="text-white font-weight-bold text-xs">ATM's</p>
</div>
</a>
</div>
<div class="col-auto text-center move-on-hover mb-2">
<a href="./category.php?category=bank">
<div class="d-flex flex-column bg-primary rounded-3 p-2">
<img src="assets/img/svgs/icons8_euro_bank_building_2.svg" alt="Banks" height="50px">
<p class="text-white font-weight-bold text-xs">Bank's</p>
</div>
</a>
</div>
<div class="col-md-12">
<!-- button for all listing page -->
<a href="./category.php" class="btn btn-primary btn-sm mt-3">
<i class="fas fa-list" aria-hidden="true"></i> View All Listings
</a>
</div>
</div>
</div>
<div class="position-absolute w-100 z-index-1 bottom-0">
<svg class="waves" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 24 150 40" preserveAspectRatio="none" shape-rendering="auto">
<defs>
<path id="gentle-wave" d="M-160 44c30 0 58-18 88-18s 58 18 88 18 58-18 88-18 58 18 88 18 v44h-352z" />
</defs>
<g class="moving-waves">
<use xlink:href="#gentle-wave" x="48" y="-1" fill="rgba(255,255,255,0.40" />
<use xlink:href="#gentle-wave" x="48" y="3" fill="rgba(255,255,255,0.35)" />
<use xlink:href="#gentle-wave" x="48" y="5" fill="rgba(255,255,255,0.25)" />
<use xlink:href="#gentle-wave" x="48" y="8" fill="rgba(255,255,255,0.20)" />
<use xlink:href="#gentle-wave" x="48" y="13" fill="rgba(255,255,255,0.15)" />
<use xlink:href="#gentle-wave" x="48" y="16" fill="rgba(255,255,255,0.95" />
</g>
</svg>
</div>
</div>
</header>
<!-- ========== End Hero ========== -->
<!-- ========== Start Why Choose Listify ========== -->
<section id="why-choose-listify" class="py-5">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="mb-4">Why Choose Listify?</h2>
</div>
</div>
<div class="row">
<div class="col-lg-3">
<div class="card mb-4 move-on-hover">
<div class="card-body">
<h5 class="card-title text-center text-gradient text-primary text-bolder">Easy to Use</h5>
<p class="card-text text-center">Listify is designed to be user-friendly and easy to navigate, so you can quickly and easily find what you're looking for.</p>
</div>
</div>
</div>
<div class="col-lg-3">
<div class="card mb-4 move-on-hover">
<div class="card-body">
<h5 class="card-title text-center text-gradient text-primary text-bolder">Detailed Listings</h5>
<p class="card-text text-center">Our listings are comprehensive and detailed, so you can get all the information you need about a business before making a decision.</p>
</div>
</div>
</div>
<div class="col-lg-3">
<div class="card mb-4 move-on-hover">
<div class="card-body">
<h5 class="card-title text-center text-gradient text-primary text-bolder">Free to Use</h5>
<p class="card-text text-center">Listify is completely free to use, so you can save money while finding the best businesses in your area.</p>
</div>
</div>
</div>
<div class="col-lg-3">
<div class="card mb-4 move-on-hover">
<div class="card-body">
<h5 class="card-title text-center text-gradient text-primary text-bolder">Support</h5>
<p class="card-text text-center">Our support team is available 24/7 to help you with any questions or issues you may have while using Listify.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ========== End Why Choose Listify ========== -->
<!-- ========== Start Testimonials ========== -->
<section id="testimonials" class="py-5">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="mb-4">What Our Customers Say</h2>
</div>
</div>
<div class="row mt-6">
<div class="col-lg-4 col-md-8">
<div class="card card-plain move-on-hover">
<div class="card-body">
<div class="author">
<div class="name">
<h6 class="mb-0 font-weight-bolder">Jone Dove</h6>
<div class="stats">
<i class="far fa-clock" aria-hidden="true"></i> 1 day ago
</div>
</div>
</div>
<p class="mt-4">"Listify has helped me grow my business by reaching more customers and getting more reviews. Highly recommended!"</p>
<div class="rating text-warning mt-3">
<i class="fas fa-star" aria-hidden="true"></i>
<i class="fas fa-star" aria-hidden="true"></i>
<i class="fas fa-star" aria-hidden="true"></i>
<i class="fas fa-star" aria-hidden="true"></i>
<i class="fas fa-star" aria-hidden="true"></i>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-8 ms-md-auto">
<div class="card bg-gradient-primary move-on-hover">
<div class="card-body">
<div class="author align-items-center">
<div class="name">
<h6 class="text-white mb-0 font-weight-bolder">Jane Dove</h6>
<div class="stats text-white">
<i class="far fa-clock" aria-hidden="true"></i> 1 week ago
</div>
</div>
</div>
<p class="mt-4 text-white">"Listify is the best business listing app out there. It's easy to use, affordable, and has helped me get more customers."</p>
<div class="rating text-warning mt-3">
<i class="fas fa-star text-white" aria-hidden="true"></i>
<i class="fas fa-star text-white" aria-hidden="true"></i>
<i class="fas fa-star text-white" aria-hidden="true"></i>
<i class="fas fa-star text-white" aria-hidden="true"></i>
<i class="fas fa-star text-white" aria-hidden="true"></i>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-8">
<div class="card card-plain move-on-hover">
<div class="card-body">
<div class="author">
<div class="name">
<h6 class="mb-0 font-weight-bolder">Samuel Kamuli</h6>
<div class="stats">
<i class="far fa-clock" aria-hidden="true"></i> 3 weeks ago
</div>
</div>
</div>
<p class="mt-4">"Listify has been a game-changer for my business. I've seen a significant increase in traffic and sales since I started using it."</p>
<div class="rating text-warning mt-3">
<i class="fas fa-star" aria-hidden="true"></i>
<i class="fas fa-star" aria-hidden="true"></i>
<i class="fas fa-star" aria-hidden="true"></i>
<i class="fas fa-star" aria-hidden="true"></i>
<i class="fas fa-star" aria-hidden="true"></i>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ========== End Testimonials ========== -->
<!-- ========== Start How to List ========== -->
<section id="how-to-list" class="py-5">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="mb-4">How to List Your Business</h2>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<div class="card mb-4">
<div class="card-body">
<h5 class="card-title">Step 1</h5>
<p class="card-text">Create an account on Listify.</p>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card mb-4">
<div class="card-body">
<h5 class="card-title">Step 2</h5>
<p class="card-text">Fill out the business listing form with your business details.</p>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card mb-4">
<div class="card-body">
<h5 class="card-title">Step 3</h5>
<p class="card-text">Submit your business listing for review.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ========== End How to List ========== -->
<!-- ========== Start Team ========== -->
<section id="team" class="bg-light">
<div class="container py-5">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="mb-4">Our Team</h2>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<div class="card mb-4 bg-gradient-primary move-on-hover">
<div class="card-body">
<h5 class="card-title text-white text-center">Sahil Ahmad</h5>
<p class="card-text text-white text-center">Lead Developer</p>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="card mb-4 bg-gradient-info move-on-hover">
<div class="card-body">
<h5 class="card-title text-white text-center">Farah Niyazi</h5>
<p class="card-text text-white text-center">Lead Designer</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ========== End Team ========== -->
<!-- ========== Start About ========== -->
<section id="about" class="py-5">
<div class="container">
<div class="row">
<div class="col-lg-6">
<h2 class="mb-4">About Listify</h2>
<p>Listify is a comprehensive business listing app that allows you to list your business and get reviews from your customers. Our mission is to help small businesses grow by providing them with a platform to showcase their products and services to a wider audience.</p>
<p>With Listify, you can create a business listing in just a few minutes and start getting reviews from your customers. Our app is easy to use and comes with a range of features to help you manage your business listing and engage with your customers.</p>
</div>
<div class="col-lg-6">
<img src="assets/img/john-schnobrich-2FPjlAyMQTA-unsplash.jpg" alt="About Listify" class="img-fluid rounded-3">
</div>
</div>
</div>
</section>
<!-- ========== End About ========== -->
<!-- ========== Start CTA ========== -->
<div class="container-fluid bg-gradient-primary">
<div class="container py-5">
<div class="row justify-content-center">
<div class="col-lg-8 text-center">
<h2 class="text-white">List your business today</h2>
<p class="lead text-white mt-3">Listify is a comprehensive business listing app that allows you to list your business and get reviews from your customers.</p>
<a href="./add-listing.php" class="btn bg-white text-primary mt-3">Add your business</a>
</div>
</div>
</div>
</div>
<!-- ========== End CTA ========== -->
<!-- ========== Start Footer ========== -->
<?php include_once './includes/_footer.php'; ?>
<!-- ========== End Footer ========== -->
</body>
</html>