-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·493 lines (432 loc) · 25.1 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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<!--====== Title ======-->
<title>Ridesio - a ridesharing platform | Home</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--====== Favicon Icon ======-->
<link rel="shortcut icon" href="assets/images/favicon.png" type="image/png">
<!--====== Slick CSS ======-->
<link rel="stylesheet" href="assets/css/slick.css">
<!--====== Font Awesome CSS ======-->
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
<!--====== Line Icons CSS ======-->
<link rel="stylesheet" href="assets/css/LineIcons.css">
<!--====== Animate CSS ======-->
<link rel="stylesheet" href="assets/css/animate.css">
<!--====== Magnific Popup CSS ======-->
<link rel="stylesheet" href="assets/css/magnific-popup.css">
<!--====== Bootstrap CSS ======-->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<!--====== Default CSS ======-->
<link rel="stylesheet" href="assets/css/default.css">
<!--====== Style CSS ======-->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!--[if IE]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]-->
<!--====== PRELOADER PART START ======-->
<div class="preloader">
<div class="loader">
<div class="ytp-spinner">
<div class="ytp-spinner-container">
<div class="ytp-spinner-rotator">
<div class="ytp-spinner-left">
<div class="ytp-spinner-circle"></div>
</div>
<div class="ytp-spinner-right">
<div class="ytp-spinner-circle"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--====== PRELOADER PART ENDS ======-->
<!--====== HEADER PART START ======-->
<header class="header-area">
<div class="navbar-area headroom">
<div class="container">
<div class="row">
<div class="col-lg-12">
<nav class="navbar navbar-expand-lg">
<a class="navbar-brand" href="index.html">
<img src="assets/images/logo.svg" alt="Logo">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="toggler-icon"></span>
<span class="toggler-icon"></span>
<span class="toggler-icon"></span>
</button>
<div class="collapse navbar-collapse sub-menu-bar" id="navbarSupportedContent">
<ul id="nav" class="navbar-nav m-auto">
<li class="nav-item active">
<a href="#home">Home</a>
</li>
<li class="nav-item">
<a href="#about">About </a>
</li>
<li class="nav-item">
<a href="#contact">Contact</a>
</li>
</ul>
</div> <!-- navbar collapse -->
<div class="navbar-btn d-none d-sm-inline-block">
<a class="main-btn" data-scroll-nav="0" href="#dowload">Coming Soon</a>
</div>
</nav> <!-- navbar -->
</div>
</div> <!-- row -->
</div> <!-- container -->
</div> <!-- navbar area -->
<div id="home" class="header-hero bg_cover d-lg-flex align-items-center">
<div class="container">
<div class="row">
<div class="col-lg-7">
<div class="header-hero-content">
<h1 class="hero-title wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.2s"><b>Your Go-to</b> <span>Rideshare</span> App for <b>Sustainable and Affordable</b> Travel</h1>
<p class="text wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.5s">Ridesio is a rideshare bulletin board iOS app (written in Swift) for college campuses that lets users request or post upcoming rides. Ridesio provides a communal, sustainable way of ridesharing for college students.
</p>
<div class="header-singup wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.8s">
<input type="text" placeholder="[email protected]">
<button class="main-btn">Sign Up</button>
</div>
</div> <!-- header hero content -->
</div>
</div> <!-- row -->
</div> <!-- container -->
<div class="header-hero-image d-flex align-items-center wow fadeInRightBig" data-wow-duration="1s" data-wow-delay="1.1s">
<div class="image">
<img src="assets/images/hero-image.jpg" alt="Hero Image">
</div>
</div> <!-- header hero image -->
</div> <!-- header hero -->
</header>
<!--====== HEADER PART ENDS ======-->
<!--====== ABOUT PART START ======-->
<section id="about" class="about-area pt-115">
<!-- style="background-image: url(assets/images/header-hero.jpg)"> -->
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-9">
<div class="about-title text-center wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.3s">
<!-- <h6 class="welcome">WELCOME</h6> -->
<h3 class="title"><span>Ridesio was the 2nd Place winner for CodePath's Virtual Demo Day 2020. </span> Read more in <a href="https://blog.codepath.org/2020-codepath-org-fall-semester-demo-day-ios-winners-announced/?utm_content=149195058&utm_medium=social&utm_source=linkedin&hss_channel=lcp-18305024" target="_blank">this article</a>.</h3>
</div>
</div>
</div> <!-- row -->
<div class="row">
<div class="col-lg-12">
<div class="about-image mt-60 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.5s">
<!-- <img src="assets/images/about.gif" alt="about"> -->
</div> <!-- about image -->
</div>
</div> <!-- row -->
<div class="section-title text-center pb-20 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.3s">
<h3 class="title">See <a href="./ridesio-v3.gif">Demo</a>.</h3>
</div>
</section>
<!--====== ABOUT PART ENDS ======-->
<!--====== TECHNOLOGIES PART START ======-->
<section id="technologies" class="service-area pt-105">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-8">
<div class="section-title wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.2s">
<h6 class="sub-title">Technologies</h6>
<h4 class="title">What we are built on</h4>
</div> <!-- section title -->
</div>
</div> <!-- row -->
<div class="service-wrapper mt-60 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.6s">
<div class="row no-gutters justify-content-center">
<div class="col-lg-4 col-md-7">
<div class="single-service d-flex">
<div class="service-icon">
<img src="assets/images/swift-logo.png" alt="Icon">
</div>
<div class="service-content media-body">
<h4 class="service-title">Swift</h4>
<p class="text">All the iOS application logic was done in Swift</p>
</div>
<div class="shape shape-1">
<img src="assets/images/shape/shape-1.svg" alt="shape">
</div>
<div class="shape shape-2">
<img src="assets/images/shape/shape-2.svg" alt="shape">
</div>
</div> <!-- single service -->
</div>
<div class="col-lg-4 col-md-7">
<div class="single-service service-border d-flex">
<div class="service-icon">
<img src="assets/images/parse-logo.png" alt="Icon">
</div>
<div class="service-content media-body">
<h4 class="service-title">Parse</h4>
<p class="text">Used as the backend for the v0 prototype of the application</p>
</div>
<div class="shape shape-3">
<img src="assets/images/shape/shape-3.svg" alt="shape">
</div>
</div> <!-- single service -->
</div>
<div class="col-lg-4 col-md-7">
<div class="single-service d-flex">
<div class="service-icon">
<img src="assets/images/alamofire-logo.png" alt="Icon">
</div>
<div class="service-content media-body">
<h4 class="service-title">AlamofireImage</h4>
<p class="text">Used to display images within the application</p>
</div>
<div class="shape shape-4">
<img src="assets/images/shape/shape-4.svg" alt="shape">
</div>
<div class="shape shape-5">
<img src="assets/images/shape/shape-5.svg" alt="shape">
</div>
</div> <!-- single service -->
</div>
</div> <!-- row -->
<div class="row">
<div class="col-lg-12">
<div class="service-btn text-center pt-25 pb-15">
<a class="main-btn main-btn-2" href="#">All Technologies</a>
</div> <!-- service btn -->
</div>
</div> <!-- row -->
</div> <!-- service wrapper -->
</div> <!-- container -->
</section>
<!--====== TECHNOLOGIES PART ENDS ======-->
<!--====== CONTACT PART START ======-->
<section id="contact" class="contact-area pt-120 pb-120">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-4">
<div class="section-title text-center pb-20 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.3s">
<h6 class="sub-title">Our Team</h6>
<h4 class="title">Get In <span>Touch.</span></h4>
</div> <!-- section title -->
</div>
</div> <!-- row -->
<div class="contact-info pt-30">
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="single-contact-info contact-color-1 mt-30 d-flex wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.3s">
<div class="contact-info-icon">
<i class="lni-emoji-cool
"></i>
</div>
<div class="contact-info-content media-body">
<a href="yaosarayin.com"><h4>Yao Yin</h4></a>
<a href="mailto:[email protected]"><p>[email protected]</p></a>
</div>
</div> <!-- single contact info -->
</div>
<div class="col-lg-4 col-md-6">
<div class="single-contact-info contact-color-2 mt-30 d-flex wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.6s">
<div class="contact-info-icon">
<i class="lni-emoji-friendly
"></i>
</div>
<div class="contact-info-content media-body">
<a href="https://www.linkedin.com/in/nashir-janmohamed/"><h4>Nashir Janmohamed</h4></a>
<a href="mailto:[email protected]"><p>[email protected]</p></a>
</div>
</div> <!-- single contact info -->
</div>
<div class="col-lg-4 col-md-6">
<div class="single-contact-info contact-color-3 mt-30 d-flex wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.9s">
<div class="contact-info-icon">
<i class="lni-emoji-happy"></i>
</div>
<div class="contact-info-content media-body">
<a href="https://www.linkedin.com/in/tahaafzal5/"><h4>Taha Afzal</h4></a>
<a href="mailto:[email protected]"><p>[email protected]</p></a>
</div>
</div> <!-- single contact info -->
</div>
</div> <!-- row -->
</div> <!-- contact info -->
<div class="row">
<div class="col-lg-12">
<div class="contact-wrapper-form pt-115 wow fadeInUpBig" data-wow-duration="1s" data-wow-delay="0.5s">
<h4 class="contact-title pb-10"><i class="lni-envelope"></i> Leave <span>A Message.</span></h4>
<form id="contact-form" action="assets/contact.php" method="post">
<div class="row">
<div class="col-md-6">
<div class="contact-form mt-45">
<label>Enter Your Name</label>
<input type="text" name="name" placeholder="Full Name">
</div> <!-- contact-form -->
</div>
<div class="col-md-6">
<div class="contact-form mt-45">
<label>Enter Your Email</label>
<input type="email" name="email" placeholder="Email">
</div> <!-- contact-form -->
</div>
<div class="col-md-12">
<div class="contact-form mt-45">
<label>Your Message</label>
<textarea name="message" placeholder="Enter your message..."></textarea>
</div> <!-- contact-form -->
</div>
<p class="form-message"></p>
<div class="col-md-12">
<div class="contact-form mt-45">
<button type="submit" class="main-btn">Send Now</button>
</div> <!-- contact-form -->
</div>
</div> <!-- row -->
</form>
</div> <!-- contact wrapper form -->
</div>
</div> <!-- row -->
</div> <!-- container -->
</section>
<!--====== CONTACT PART ENDS ======-->
<!--====== ACKNOWLEDGEMENT PART START ======-->
<section id="Acknowledgements" class="service-area pt-105">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-8">
<div class="section-title wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.2s">
<h6 class="sub-title">Acknowledgements</h6>
<h4 class="title">We cannot accomplish this without...</h4>
</div> <!-- section title -->
</div>
</div> <!-- row -->
<div class="service-wrapper mt-60 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.6s">
<div class="row no-gutters justify-content-center">
<div class="col-lg-4 col-md-7">
<div class="single-service d-flex">
<div class="service-content media-body">
<a href="https://codepath.org"><h4 class="service-title">Codepath</h4></a>
<p class="text">The authors met in breakout rooms during the CodePath iOS Fall 2020 course. This course was one of the most comprehensive and engaging learning experiences we have had! The class taught us so much about application development, UI/UX design, and entrepreneurship, and we highly recommend it to anyone regardless of their desire to pursue mobile engineering as a career.</p>
</div>
</div> <!-- single service -->
</div>
<div class="col-lg-4 col-md-7">
<div class="single-service service-border d-flex">
<div class="service-content media-body">
<a href="https://zimride.com"><h4 class="service-title">Zimride</h4></a>
<p class="text">This web only platform was the inspiration for Ridesio; we intend to bring the Zimride experience to mobile devices.</p>
</div>
</div> <!-- single service -->
</div>
<div class="col-lg-4 col-md-7">
<div class="single-service d-flex">
<div class="service-content media-body">
<a href="https://www.linkedin.com/in/surajchetnani/"><h4 class="service-title">Suraj Chetnani</h4></a>
<p class="text">Suraj was our mentor for the v0 prototype of the app; his advice and guidance was crucial to the success of our app at the CodePath demo day.</p>
</div>
</div> <!-- single service -->
</div>
</div> <!-- row -->
</div> <!-- service wrapper -->
</div> <!-- container -->
</section>
<!--====== ACKNOWLEDGEMENT PART ENDS ======-->
<!--====== FOOTER PART START ======-->
<footer id="footer" class="footer-area bg_cover" style="background-image: url(assets/images/footer-bg.jpg)">
<div class="container">
<div class="footer-widget pt-30 pb-70">
<div class="row">
<div class="col-lg-3 col-sm-6 order-sm-1 order-lg-1">
<div class="footer-about pt-40">
<a href="#">
<img src="assets/images/logo.svg" alt="Logo">
</a>
<p class="text">Ridesio is a rideshare bulletin board iOS app (written in Swift) for college campuses that lets users request or post upcoming rides. Ridesio provides a communal, sustainable way of ridesharing for college students.
</p>
</div> <!-- footer about -->
</div>
<div class="col-lg-3 col-sm-6 order-sm-3 order-lg-2">
<div class="footer-link pt-40">
<div class="footer-title">
<h5 class="title"></h5>
</div>
<ul>
</ul>
</div> <!-- footer link -->
</div>
<div class="col-lg-3 col-sm-6 order-sm-4 order-lg-3">
<div class="footer-link pt-40">
<div class="footer-title">
<h5 class="title">About Us</h5>
</div>
<ul>
<li><a href="#">Overview</a></li>
<li><a href="#technologies">Our Technologies</a></li>
<li><a href="#contact">Our Team</a></li>
<li><a href="#acknoledgements">Acknowledgements</a></li>
</ul>
</div> <!-- footer link -->
</div>
<div class="col-lg-3 col-sm-6 order-sm-2 order-lg-4">
<div class="footer-contact pt-40">
<div class="footer-title">
<h5 class="title">Contact Info</h5>
</div>
<div class="contact pt-10">
<p class="text">[email protected]</p>
<p class="text">+1 5623855896</p>
<ul class="social mt-40">
<li><a href="#"><i class="lni-facebook"></i></a></li>
<li><a href="#"><i class="lni-twitter"></i></a></li>
<li><a href="#"><i class="lni-instagram"></i></a></li>
<li><a href="#"><i class="lni-linkedin"></i></a></li>
</ul>
</div> <!-- contact -->
</div> <!-- footer contact -->
</div>
</div> <!-- row -->
</div> <!-- footer widget -->
<div class="footer-copyright text-center">
<p class="text">© 2020 by <a href="https://ridesio.com" rel="nofollow">Ridesio</a> All Rights Reserved.</p>
</div>
</div> <!-- container -->
</footer>
<!--====== FOOTER PART ENDS ======-->
<!--====== BACK TOP TOP PART START ======-->
<a href="#" class="back-to-top"><i class="lni-chevron-up"></i></a>
<!--====== BACK TOP TOP PART ENDS ======-->
<!--====== Jquery js ======-->
<script src="assets/js/vendor/jquery-1.12.4.min.js"></script>
<script src="assets/js/vendor/modernizr-3.7.1.min.js"></script>
<!--====== Bootstrap js ======-->
<script src="assets/js/popper.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<!--====== Slick js ======-->
<script src="assets/js/slick.min.js"></script>
<!--====== Isotope js ======-->
<script src="assets/js/imagesloaded.pkgd.min.js"></script>
<script src="assets/js/isotope.pkgd.min.js"></script>
<!--====== Counter Up js ======-->
<script src="assets/js/waypoints.min.js"></script>
<script src="assets/js/jquery.counterup.min.js"></script>
<!--====== Circles js ======-->
<script src="assets/js/circles.min.js"></script>
<!--====== Appear js ======-->
<script src="assets/js/jquery.appear.min.js"></script>
<!--====== WOW js ======-->
<script src="assets/js/wow.min.js"></script>
<!--====== Headroom js ======-->
<script src="assets/js/headroom.min.js"></script>
<!--====== Jquery Nav js ======-->
<script src="assets/js/jquery.nav.js"></script>
<!--====== Scroll It js ======-->
<script src="assets/js/scrollIt.min.js"></script>
<!--====== Magnific Popup js ======-->
<script src="assets/js/jquery.magnific-popup.min.js"></script>
<!--====== Main js ======-->
<script src="assets/js/main.js"></script>
</body>
</html>