-
Notifications
You must be signed in to change notification settings - Fork 289
/
about.html
415 lines (372 loc) · 15 KB
/
about.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
<!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" />
<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">
<link rel="shortcut icon" href="ambulance.png" type="image/x-icon">
<title>About Us - AmbuFlow</title>
<link rel="stylesheet" href="src/css/index.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
/>
<!--Updated to latest version-->
<link rel="stylesheet" href="src/css/index.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
<style>
body {
font-family: "Roboto", sans-serif;
background-color: #f3f4f6; /* Change from #0b0e11 */
color: #000000; /* Change from #d1d1d1 */
margin: 0;
padding: 0;
overflow-x: hidden;
}
header {
background: linear-gradient(90deg, #A7CCF0, #F3F4F6, #A7CCF0); /* Change from #b2d1ff, #93b6d3, #42a5f5 */
padding: 30px 0 0 0;
text-align: center;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
header h1 {
color: #000000; /* Change from #fff */
font-size: 2.4rem;
text-transform: uppercase;
letter-spacing: 3px;
}
main {
padding: 50px 20px;
max-width: 1200px;
margin: 0 auto;
background: #ffffff; /* Change from #10141b */
border-radius: 15px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
border: 2px solid rgba(0, 0, 0, 0.2); /* Change from rgba(66, 165, 245, 0.2) */
}
h2 {
color: black; /* Change from #1e88e5 */
font-size: 2.5rem;
/* border-bottom: 2px solid #000000; Change from #1e88e5 */
padding-bottom: 10px;
margin-bottom: 20px;
text-transform: uppercase;
}
p {
line-height: 1.8;
font-size: 1.1rem;
margin-bottom: 30px;
}
.highlight {
color: #e53935; /* Change from #f50057 */
font-weight: bold;
}
ul {
margin-left: 40px;
list-style: none;
}
ul li {
margin-bottom: 15px;
position: relative;
padding-left: 25px;
font-size: 1.1rem;
}
ul li::before {
color: #000000; /* Change from #1e88e5 */
position: absolute;
left: 0;
top: 0;
}
footer {
background-color: #333333; /* Change from #0d47a1 */
color: #f3f4f6; /* Change from #ffffff */
text-align: center;
padding: 20px 0;
position: relative;
bottom: 0;
width: 100%;
}
footer p {
margin: 0;
}
/* Buttons */
.btn {
display: inline-block;
background-color: #1e88e5;
color: white;
padding: 10px 20px;
text-decoration: none;
border-radius: 25px;
transition: 0.3s;
}
.btn:hover {
background-color: #42a5f5;
transform: scale(1.05);
}
/* Hover effect */
main:hover {
transition: 0.5s;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}
/* Futuristic glow effect for text */
/* h1,
h2 {
text-shadow: 0 0 10px rgba(30, 136, 229, 0.8),
0 0 20px rgba(66, 165, 245, 0.5);
} */
/* Futuristic neon glow for sections */
main {
border: 2px solid rgba(66, 165, 245, 0.2);
color:#0344f6;
}
/* Responsive Design */
@media (max-width: 768px) {
header h1 {
font-size: 3rem;
}
h2 {
font-size: 2rem;
}
}
@media (max-width: 480px) {
header h1 {
font-size: 2.5rem;
}
h2 {
font-size: 1.8rem;
}
}
/* Navbar Styles */
.menu {
display: flex;
justify-content: center;
margin: 20px 0;
}
.nav-links {
list-style: none;
display: flex;
padding: 10px;
background-color: #f0f0f0; /* Light background color */
border-radius: 25px; /* Rounded corners */
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}
.nav-links li {
margin: 0 15px; /* Space between links */
}
.nav-links a {
text-decoration: none;
color: #333; /* Dark text color */
font-weight: 500; /* Medium font weight */
transition: color 0.3s; /* Smooth color transition */
}
.nav-links a:hover {
color: #007bff; /* Change color on hover */
}
</style>
</head>
<body>
<header>
<div class="container">
<div class="logo">
<div class="brand-name">
<span class="ambu">Ambu</span>Flow
</div>
<img src="images/logo2-w.webp" alt="Ambulance Monitoring System Logo" style="width: 50px; height: auto" />
</div>
<nav class="menu">
<ul class="nav-links">
<li>
<a href="./index.html" id="home-link" onclick="changeContent('home')">Home</a>
</li>
<li>
<a href="features.html" id="features-link" onclick="changeContent('features')">Features</a>
</li>
<li>
<a href="team.html" id="team-link" onclick="changeContent('team')">Team</a>
</li>
<li>
<a href="contact.html" id="contact-link" onclick="changeContent('contact')">Contact</a>
</li>
<li>
<a href="Feedback.html" id="feedback-link" onclick="changeContent('feedback')">Feedback</a>
</li>
<li>
<a href="nearby.html" id="nearby-link" onclick="changeContent('nearby')">Nearby</a>
</li>
</ul>
</nav>
<div class="buttons">
<a href="login.html" class="login">Log in</a>
<a href="up.html" class="get-started">Get started</a>
</div>
</div>
<h1 >About AmbuFlow</h1>
</header>
<main style="margin-top:30px;">
<h2>Who We Are</h2>
<p>
<span class="highlight">AmbuFlow</span> is a dynamic project developed
under Bobble AI, combining cutting-edge technology and healthcare
expertise to revolutionize emergency medical response. Our core goal is
to create faster, more efficient communication between patients,
ambulances, and hospitals during critical times.
</p>
<p>
Using advanced features like <strong>real-time GPS tracking</strong> and
<strong>Google Maps integration</strong>, we ensure that the nearest
medical help is always accessible when needed the most. AmbuFlow helps
save lives by reducing response times in emergencies.
</p>
<h2>Our Vision</h2>
<p>
We envision a future where emergency services are fast, accessible, and
reliable for everyone. Our platform is designed to transform how medical
assistance is delivered, helping to reduce the time it takes to respond
to emergency situations, and ultimately improving healthcare outcomes
for communities worldwide.
</p>
<h2>Why AmbuFlow?</h2>
<ul>
<li>
<strong>Quick Emergency Response:</strong> Connect with the closest
medical services and ambulances through real-time tracking.
</li>
<li>
<strong>Real-Time Navigation:</strong> Optimized routes for
ambulances, considering real-time traffic updates, to ensure the
fastest response time.
</li>
<li>
<strong>Seamless Communication:</strong> Simplifying communication
between patients, hospitals, and ambulance drivers to ensure efficient
medical care coordination.
</li>
<li>
<strong>Resource Optimization:</strong> Hospitals can manage incoming
patients and resources with better precision using live data from the
app.
</li>
<li>
<strong>Simple User Interface:</strong> Our interface is easy to
navigate, even in high-stress situations, so users can quickly get
help.
</li>
</ul>
<h2>Our Technology</h2>
<ul>
<li>
<strong>HTML 📝:</strong> Used to build the core structure of our web
application.
</li>
<li>
<strong>CSS 🎨:</strong> Brings style and aesthetics to our app,
creating a pleasant user experience.
</li>
<li>
<strong>JavaScript 💻:</strong> Provides dynamic real-time ambulance
and hospital tracking functionality.
</li>
<li>
<strong>Google API Keys 🔑:</strong> Enables integration of Google
Maps for precise tracking and location data.
</li>
</ul>
<h2>Support Us</h2>
<p>
We believe that <strong>AmbuFlow</strong> can make a significant impact
in the healthcare sector. You can support us by contributing to our
project on GitHub, sharing it with others, or simply giving us a star!
Your support will help us continue to enhance emergency medical services
across the globe.
</p>
<a href="https://github.com/mansiruhil13/Bobble-AI" class="btn"
>Contribute on GitHub</a
>
</main>
<footer style="background-color:#A7CCF0; color:#000000; text-align: center; width: 100%; margin-top: 20px;">
<div style="background-color: #A7CCF0; color: #000000; ">
<div style="display: flex; justify-content: space-between; flex-wrap: wrap; max-width: 1200px; margin: 0 auto;">
<!-- Quick Links Section -->
<div
style="flex: 1;
display: flex;
flex-direction: column;
align-items: start;
min-width: 200px;
margin-bottom: 20px;">
<h3 style="font-size: 1.5rem; margin-bottom: 10px; color: #2980b9;">Quick Links</h3>
<ul style="list-style-type: none; padding: 0;">
<li><a href="about.html" style="color: #000000; background:none; cursor: pointer; text-decoration: none;" onmouseover="this.style.color='blue'" onmouseout="this.style.color='black'">About Us</a></li>
<li><a href="contact.html" style="color: #000000; background:none; cursor: pointer; text-decoration: none;" onmouseover="this.style.color='blue'" onmouseout="this.style.color='black'">Contact Us</a></li>
<li><a href="privacy.html" style="color: #000000; background:none; cursor: pointer; text-decoration: none;" onmouseover="this.style.color='blue'" onmouseout="this.style.color='black'">Privacy Policy</a></li>
<li><a href="terms.html" style="color: #000000; background:none; cursor: pointer; text-decoration: none;" onmouseover="this.style.color='blue'" onmouseout="this.style.color='black'">Terms of Service</a></li>
<li><a href="sitemap.html" style="color: #000000;background:none; cursor: pointer; text-decoration: none;" onmouseover="this.style.color='blue'" onmouseout="this.style.color='black'">Site Map</a></li>
<!-- Add FAQ link here -->
<li><a href="faq.html" style="color: #000000;background:none; cursor: pointer; text-decoration: none;" onmouseover="this.style.color='blue'" onmouseout="this.style.color='black'">FAQ</a></li>
</ul>
</div>
<!-- Contact Information Section -->
<div
style="flex: 1;
min-width: 200px;
margin-bottom: 10px;">
<h3 style="font-size: 1.5rem; color: #2980b9;">Contact Info</h3>
<p style="color: #000;">123 Emergency Lane, Mumbai, India</p>
<a href="mailto:[email protected]" style="color: #000000; background:none; cursor: pointer;" onmouseover="this.style.color='blue'" onmouseout="this.style.color='black'">[email protected]</a></p>
<p style="color: #000000;">Phone: <a href="tel:+91-911-1234567" style="color: #000000; background: none;" onmouseover="this.style.color='blue'" onmouseout="this.style.color='black'">+91-911-1234567</a></p>
</div>
<!-- Modified the looks of the social icons -->
<!-- Social Media Links -->
<div style="text-align: center; min-width: 200px; color: black;">
<h3 style="font-size: 1.5rem; margin-bottom: 10px; color: #2980b9;">Follow Us</h3>
<div style="display: flex; justify-content: center; align-items: center; gap: 15px;">
<a href="https://www.facebook.com" target="_blank" class="social-icon facebook no-hover-effect"
style="color: black; text-decoration: none; font-size: 24px;"><i class="fab fa-facebook"></i></a>
<a href="https://www.twitter.com" target="_blank" class="social-icon twitter no-hover-effect"
style="color: black; text-decoration: none; font-size: 24px;"><i class="fa-brands fa-x-twitter"></i></a>
<a href="https://www.instagram.com" target="_blank" class="social-icon instagram no-hover-effect"
style="color: black; text-decoration: none; font-size: 24px;"><i class="fab fa-instagram"></i></a>
<a href="https://www.linkedin.com" target="_blank" class="social-icon linkedin no-hover-effect"
style="color: black; text-decoration: none; font-size: 24px;"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
<!-- Newsletter Subscription -->
<div style="flex: 1; min-width: 200px; margin-bottom: 20px;">
<h3 style="font-size: 1.5rem; margin-bottom: 10px; color: #2980b9;">Subscribe to Our Newsletter</h3>
<form action="#">
<i class="fas fa-envelope" style="position: absolute; top: 8.60rem; right: 23.5rem; color: gray; font-size: 13px;"></i>
<input type="email" placeholder="Your Email"
style="padding: 10px; width: 80%; border: none; border-radius: 5px; padding-left: 27px;" required><br><br>
<button type="submit"
style="background-color: #e81a1a; color: white; padding: 10px 20px; border: none; cursor: pointer; border-radius: 5px;">Subscribe</button>
</form>
</div>
<style>
.hover-link {
color: #000000;
text-decoration: none;
margin-right: 10px;
background:none;
cursor: pointer;
transition: color 0.3s ease;
}
.hover-link:hover {
color: blue;
background:none;
}
</style>
</div>
</div>
</footer>
<div style="background-color: #000000;">
<p>© 2024 AmbuFlow - All Rights Reserved</p>
</div>
</body>
</html>