-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
352 lines (321 loc) Β· 14.5 KB
/
about.html
File metadata and controls
352 lines (321 loc) Β· 14.5 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - FarmFresh Foods</title>
<!-- Bootstrap 5 CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
<!-- Animate.css -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="modern-styles.css">
<style>
.about-hero {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 100px 0;
text-align: center;
}
.feature-card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: none;
border-radius: 15px;
overflow: hidden;
}
.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.feature-icon {
font-size: 3rem;
margin-bottom: 1rem;
background: linear-gradient(45deg, #28a745, #20c997);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.stats-section {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
padding: 80px 0;
}
.stat-number {
font-size: 3rem;
font-weight: bold;
color: #28a745;
}
.team-card {
border: none;
border-radius: 15px;
overflow: hidden;
transition: transform 0.3s ease;
}
.team-card:hover {
transform: scale(1.05);
}
.team-img {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
margin: 0 auto;
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-light bg-white shadow-sm fixed-top">
<div class="container">
<a class="navbar-brand d-flex align-items-center" href="index.html">
<i class="fas fa-leaf text-success me-2"></i>
<span class="fw-bold text-success">FarmFresh Foods</span>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav me-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contect.html">Contact</a>
</li>
</ul>
<div class="d-flex align-items-center">
<a href="login.php" class="btn btn-outline-success me-2">Login</a>
<a href="registraction.php" class="btn btn-success">Sign Up</a>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="about-hero">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<h1 class="display-4 fw-bold mb-4 animate__animated animate__fadeInUp">About FarmFresh Foods</h1>
<p class="lead mb-4 animate__animated animate__fadeInUp animate__delay-1s">
Your trusted partner for fresh, organic, and healthy fruits and vegetables since 2010
</p>
<div class="animate__animated animate__fadeInUp animate__delay-2s">
<a href="#story" class="btn btn-light btn-lg me-3">Our Story</a>
<a href="contect.html" class="btn btn-outline-light btn-lg">Contact Us</a>
</div>
</div>
</div>
</div>
</section>
<!-- Our Story Section -->
<section id="story" class="py-5">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6">
<h2 class="display-5 fw-bold mb-4">Our Story</h2>
<p class="lead mb-4">
Founded in 2010 by FarmFresh, our company started as a small family business with a simple mission:
to provide fresh, high-quality fruits and vegetables to our local community.
</p>
<p class="mb-4">
Over the years, we've grown from a small local vendor to a trusted supplier, but our commitment
to quality and freshness remains unchanged. We work directly with local farmers and organic
producers to ensure that every product meets our high standards.
</p>
<p class="mb-4">
Today, we serve thousands of satisfied customers who trust us for their daily fresh produce needs.
Our modern e-commerce platform makes it easier than ever to access farm-fresh products from the
comfort of your home.
</p>
</div>
<div class="col-lg-6">
<img src="apple.png" alt="Fresh Produce" class="img-fluid rounded shadow">
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="py-5 bg-light">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center mb-5">
<h2 class="display-5 fw-bold">Why Choose Us?</h2>
<p class="lead">We're committed to providing the best fresh produce experience</p>
</div>
</div>
<div class="row g-4">
<div class="col-md-4">
<div class="card feature-card h-100 p-4 text-center">
<div class="card-body">
<i class="fas fa-leaf feature-icon"></i>
<h4 class="fw-bold mb-3">100% Organic</h4>
<p class="text-muted">
All our products are certified organic, grown without harmful pesticides or chemicals.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card feature-card h-100 p-4 text-center">
<div class="card-body">
<i class="fas fa-truck feature-icon"></i>
<h4 class="fw-bold mb-3">Fresh Delivery</h4>
<p class="text-muted">
Same-day delivery ensures you get the freshest produce at your doorstep.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card feature-card h-100 p-4 text-center">
<div class="card-body">
<i class="fas fa-handshake feature-icon"></i>
<h4 class="fw-bold mb-3">Fair Trade</h4>
<p class="text-muted">
We work directly with farmers, ensuring fair prices and sustainable practices.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card feature-card h-100 p-4 text-center">
<div class="card-body">
<i class="fas fa-shield-alt feature-icon"></i>
<h4 class="fw-bold mb-3">Quality Assured</h4>
<p class="text-muted">
Every product is carefully inspected to meet our strict quality standards.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card feature-card h-100 p-4 text-center">
<div class="card-body">
<i class="fas fa-clock feature-icon"></i>
<h4 class="fw-bold mb-3">Always Fresh</h4>
<p class="text-muted">
Our efficient supply chain ensures maximum freshness from farm to table.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card feature-card h-100 p-4 text-center">
<div class="card-body">
<i class="fas fa-heart feature-icon"></i>
<h4 class="fw-bold mb-3">Customer Care</h4>
<p class="text-muted">
Our dedicated team is always ready to help with your fresh produce needs.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="stats-section">
<div class="container">
<div class="row text-center">
<div class="col-md-3 mb-4">
<div class="stat-number">10K+</div>
<h5>Happy Customers</h5>
<p class="text-muted">Satisfied customers trust our quality</p>
</div>
<div class="col-md-3 mb-4">
<div class="stat-number">50+</div>
<h5>Fresh Products</h5>
<p class="text-muted">Wide variety of fruits and vegetables</p>
</div>
<div class="col-md-3 mb-4">
<div class="stat-number">100+</div>
<h5>Partner Farms</h5>
<p class="text-muted">Direct partnerships with local farmers</p>
</div>
<div class="col-md-3 mb-4">
<div class="stat-number">13+</div>
<h5>Years Experience</h5>
<p class="text-muted">Serving fresh produce since 2010</p>
</div>
</div>
</div>
</section>
<!-- Mission & Vision Section -->
<section class="py-5">
<div class="container">
<div class="row">
<div class="col-lg-6 mb-4">
<div class="card h-100 border-0 shadow-sm">
<div class="card-body p-5">
<i class="fas fa-bullseye text-success mb-3" style="font-size: 2.5rem;"></i>
<h3 class="fw-bold mb-4">Our Mission</h3>
<p class="lead">
To provide fresh, organic, and healthy produce to every household while supporting
local farmers and promoting sustainable agriculture practices.
</p>
</div>
</div>
</div>
<div class="col-lg-6 mb-4">
<div class="card h-100 border-0 shadow-sm">
<div class="card-body p-5">
<i class="fas fa-eye text-success mb-3" style="font-size: 2.5rem;"></i>
<h3 class="fw-bold mb-4">Our Vision</h3>
<p class="lead">
To become the leading provider of fresh organic produce, creating a healthier
community while building a sustainable future for agriculture.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Call to Action -->
<section class="py-5 bg-success text-white">
<div class="container text-center">
<div class="row justify-content-center">
<div class="col-lg-8">
<h2 class="display-5 fw-bold mb-4">Ready to Experience Fresh?</h2>
<p class="lead mb-4">
Join thousands of satisfied customers who trust us for their daily fresh produce needs.
</p>
<a href="index.html" class="btn btn-light btn-lg me-3">Shop Now</a>
<a href="contect.html" class="btn btn-outline-light btn-lg">Contact Us</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-dark text-white py-4">
<div class="container">
<div class="row">
<div class="col-md-6">
<h5>FarmFresh Foods</h5>
<p>Your trusted source for fresh, organic fruits and vegetables.</p>
</div>
<div class="col-md-6 text-md-end">
<p>© 2024 FarmFresh Foods. All rights reserved.</p>
</div>
</div>
</div>
</footer>
<!-- Bootstrap 5 JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<!-- Smooth scrolling -->
<script>
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
</script>
</body>
</html>