-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
379 lines (350 loc) · 18.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Making Dining Better!">
<meta name="keywords" content="Reservation System, CRM Systems for Restaurants, Dining, Foodpreneur">
<meta name="author" content="Save a Seat Team">
<title>Save a Seat</title>
<!-- core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<link href="css/animate.min.css" rel="stylesheet">
<link href="css/owl.carousel.css" rel="stylesheet">
<link href="css/owl.transitions.css" rel="stylesheet">
<link href="css/prettyPhoto.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<link href="css/responsive.css" rel="stylesheet">
<link href="css/saveaseat.css" rel="stylesheet">
<link href="css/fontello-devpost.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
<link rel="shortcut icon" href="images/ico/dining5.ico">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="images/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="images/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="images/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="images/ico/apple-touch-icon-57-precomposed.png">
</head><!--/head-->
<body id="home" class="homepage">
<header id="header">
<nav id="main-menu" class="navbar navbar-default navbar-fixed-top" role="banner">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"><img src="images/dininglogo2.png" alt="logo"></a>
</div>
<div class="collapse navbar-collapse navbar-right">
<ul class="nav navbar-nav">
<li class="scroll active"><a href="#home">Home</a></li>
<li class="scroll"><a href="#features">Features</a></li>
<li class="scroll"><a href="#meet-team">Team</a></li>
<li class="scroll"><a class="reserveNav" href="#get-in-touch">Reserve</a></li>
</ul>
</div>
</div><!--/.container-->
</nav><!--/nav-->
</header><!--/header-->
<section id="main-slider">
<div class="owl-carousel">
<div class="item" style="background-image: url(images/slider/rest3.jpg);">
<div class="slider-inner">
<div class="container">
<div class="row">
<div class="col-sm-6">
<div class="carousel-content">
<h2 class="carousel-content">THE FUTURE OF DINING</h2>
</div>
</div>
</div>
</div>
</div>
</div><!--/.item-->
<div class="item" style="background-image: url(images/slider/rest1.jpg);">
<div class="slider-inner">
<div class="container">
<div class="row">
<div class="col-sm-6">
<div class="carousel-content">
<h2 class="carousel-content">A NEW PERSPECTIVE</h2>
</div>
</div>
</div>
</div>
</div>
</div><!--/.item-->
<div class="item" style="background-image: url(images/slider/rest2.jpg);">
<div class="slider-inner">
<div class="container">
<div class="row">
<div class="col-sm-6">
<div class="carousel-content">
<h2 class="carousel-content bigwidth">INNOVATION AT ITS FINEST</h2>
</div>
</div>
</div>
</div>
</div>
</div><!--/.item-->
</div><!--/.owl-carousel-->
</section><!--/#main-slider-->
<section id="cta" class="wow fadeIn">
<div class="container">
<div class="row">
<div class="col-sm-9">
<h2>3D Panoramic Restaurant Reservation System</h2>
<p>Never before has a reservation system been so sophisticated, yet intuitive; Save A Seat is the most magnificent restaurant application of our time. Navigate through a first-person view and select a table of your choice at our participating locations. Discover the luxury of customizing your experience with one simple click.
</p>
</div>
<div class="col-sm-3 text-right">
<a class="btn btn-primary btn-lg" onclick="$('.reserveNav')[0].click()">Check it out now!</a>
</div>
</div>
</div>
</section><!--/#cta-->
<section id="features">
<div class="container">
<div class="section-header">
<h2 class="section-title text-center wow fadeInDown">Awesome Features</h2>
<p class="text-center wow fadeInDown">Save A Seat is packed with tons of classy and convenient features! <br>
Here are some of the best features that Save a Seat has to offer.</p>
</div>
<div class="row">
<div class="col-sm-6 wow fadeInLeft">
<img class="img-responsive" src="images/main-feature.png" alt="">
</div>
<div class="col-sm-6">
<div class="media service-box wow fadeInRight">
<div class="pull-left">
<i class="fa fa-map-marker"></i>
</div>
<div class="media-body">
<h4 class="media-heading">Choose your table and time</h4>
<p>With immersive 3D panoramic table selection, deciding where to sit couldn't be more elegant. Save a Seat, with class.</p>
</div>
</div>
<div class="media service-box wow fadeInRight">
<div class="pull-left">
<i class="fa fa-cutlery"></i>
</div>
<div class="media-body">
<h4 class="media-heading">View the entire menu</h4>
<p>Get a glimpse of our entire menu. With Express Dine in, select your appetizers, and we will have them ready when your party is seated.</p>
</div>
</div>
<div class="media service-box wow fadeInRight">
<div class="pull-left">
<i class="fa fa-glass"></i>
</div>
<div class="media-body">
<h4 class="media-heading">Make special requests</h4>
<p>In addition to Express Dine in for appetizers, Wine as You Arrive allows you to pick which complementary wine we will pour when you come visit. </p>
</div>
</div>
<div class="media service-box wow fadeInRight">
<div class="pull-left">
<i class="fa fa-cutlery"></i>
</div>
<div class="media-body">
<h4 class="media-heading">SimpleDrinks™</h4>
<p>Satisfy your unquenchable thirst with SimpleDrinks™.</p>
</div>
</div>
<div class="media service-box wow fadeInRight">
<div class="pull-left">
<i class="fa fa-facebook"></i>
</div>
<div class="media-body">
<h4 class="media-heading">Share with friends</h4>
<p>Once your reservation has been made, our powerful sharing tools allow you to easily invite your friends.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="cta2">
<div class="container">
<div class="text-center">
<h2 class="wow fadeInUp" data-wow-duration="300ms" data-wow-delay="0ms">SAVE A SEAT <span>REVOLUTIONIZES</span> DINING</h2>
</div>
</div>
</section>
<section id="work-process">
<div class="container">
<div class="section-header">
<h2 class="section-title text-center wow fadeInDown">The Process</h2>
<p class="text-center wow fadeInDown">Using Save a Seat is easy and simple!<br />You will instantly fall in love.</p>
</div>
<div class="process-spacer col-md-2 col-md-4 col-xs-6">
</div>
<div class="row text-center">
<div class="col-md-2 col-md-4 col-xs-6">
<div class="wow fadeInUp" data-wow-duration="400ms" data-wow-delay="0ms">
<div class="icon-circle">
<span>1</span>
<i class="fa fa-map-marker fa-2x"></i>
</div>
<h3>CLICK</h3>
</div>
</div>
<div class="col-md-2 col-md-4 col-xs-6">
<div class="wow fadeInUp" data-wow-duration="400ms" data-wow-delay="100ms">
<div class="icon-circle">
<span>2</span>
<i class="fa fa-clock-o fa-2x"></i>
</div>
<h3>RESERVE</h3>
</div>
</div>
<div class="col-md-2 col-md-4 col-xs-6">
<div class="wow fadeInUp" data-wow-duration="400ms" data-wow-delay="200ms">
<div class="icon-circle">
<span>3</span>
<i class="fa fa-cutlery fa-2x"></i>
</div>
<h3>ENJOY</h3>
</div>
</div>
<div class="process-spacer col-md-2 col-md-4 col-xs-6">
</div>
</div>
</div>
</section><!--/#work-process-->
<section id="meet-team">
<div class="container">
<div class="section-header">
<h2 class="section-title text-center wow fadeInDown">Meet The Team</h2>
<p class="text-center wow fadeInDown">The Save a Seat team has dedicated their time to the development of this application. <br> College students and hungry for innovation, our team is confident you will enjoy using this system.</p>
</div>
<div class="row">
<div class="col-sm-6 col-md-3">
<div class="team-member wow fadeInUp" data-wow-duration="400ms" data-wow-delay="0ms">
<div class="team-img">
<!--
<img class="img-responsive" src="images/team/01.jpg" alt="">
-->
<!--<img class="img-responsive" src="images/"picture here" " alt=""> -->
</div>
<div class="team-info">
<h3>Dominic Dabish</h3>
</div>
<p>A software engineering professional, Dominic's vision is to revolutionize dining experience everywhere.</p>
<ul class="social-icons">
<li><a href="http://devpost.com/DominicDabish" target="_blank"><i class="demo-icon icon-cpost devpost-icon"></i></a></li>
<li><a href="https://linkedin.com/in/DominicDabish" target="_blank"><i class="fa fa-linkedin"></i></a></li>
<li><a href="http://github.com/DomTheDeveloper" target="_blank"><i class="fa fa-github"></i></a></li>
</ul>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="team-member wow fadeInUp" data-wow-duration="400ms" data-wow-delay="100ms">
<div class="team-img">
<!--
<img class="img-responsive" src="images/team/02.jpg" alt="">
-->
<!--<img class="img-responsive" src="images/"picture here" " alt=""> -->
</div>
<div class="team-info">
<h3>Ivan Gappy</h3>
</div>
<p>An expert at design and software, Ivan believes that beautiful UI appetizes more than anything.</p>
<ul class="social-icons">
<li><a href="http://devpost.com/IvanGappy" target="_blank"><i class="demo-icon icon-cpost"></i></a></li>
<li><a href="https://linkedin.com/pub/ivan-gappy/a5/656/3b5" target="_blank"><i class="fa fa-linkedin"></i></a></li>
<li><a href="http://www.github.com/ivangappy" target="_blank"><i class="fa fa-github"></i></a></li>
</ul>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="team-member wow fadeInUp" data-wow-duration="400ms" data-wow-delay="200ms">
<div class="team-img">
<!--
<img class="img-responsive" src="images/team/03.jpg" alt="">
-->
<!--<img class="img-responsive" src="images/"picture here" " alt=""> -->
</div>
<div class="team-info">
<h3>Zachary Yaldo</h3>
</div>
<p>An accountant and financial planner, Zach understands business and strives to move dining to the future.</p>
<ul class="social-icons">
<li><a href="http://google.com/" target="_blank"><i class="demo-icon icon-cpost"></i></a></li>
<li><a href="https://www.linkedin.com/in/zacharyyaldo" target="_blank"><i class="fa fa-linkedin"></i></a></li>
<li><a href="http://github.com/zacharyyaldo" target="_blank"><i class="fa fa-github"></i></a></li>
</ul>
</div>
</div>
<div class="col-sm-6 col-md-3 team-spacer">
</div>
<div class="col-sm-6 col-md-3">
<div class="team-member wow fadeInUp" data-wow-duration="400ms" data-wow-delay="200ms">
<div class="team-img">
<!--
<img class="img-responsive" src="images/team/04.jpg" alt="">
-->
<!--<img class="img-responsive" src="images/"picture here" " alt=""> -->
</div>
<div class="team-info">
<h3>Tyler Gnass</h3>
</div>
<p>Considered a young prodigy in the hardware and software industry, Tyler strives to innovate dining.</p>
<ul class="social-icons">
<li><a href="http://google.com/" target="_blank"><i class="demo-icon icon-cpost"></i></a></li>
<li><a href="https://www.linkedin.com/in/" target="_blank"><i class="fa fa-linkedin"></i></a></li>
<li><a href="http://google.com/" target="_blank"><i class="fa fa-github"></i></a></li>
</ul>
</div>
</div>
<div class="col-sm-6 col-md-3 team-spacer">
</div>
</div>
</div>
</section><!--/#meet-team-->
<section id="get-in-touch">
<div class="container">
<div class="section-header">
<h2 class="section-title text-center wow fadeInDown">Reserve now</h2>
<p class="text-center wow fadeInDown">What are you waiting for? <br />Go ahead and click the button below to experience our new cutting-edge reservation system.
<br /><br />
<a class=" btn-primary btn-lg" href="MainApp/index.html">Begin your experience</a>
</p>
</div>
</div>
</section><!--/#get-in-touch-->
<section id="contact">
<div id="google-map" style="height:650px" data-latitude="25.771227" data-longitude="-80.186888"></div>
<div class="container-wrapper">
<div class="container">
</div>
</div>
</section><!--/#bottom-->
<footer id="footer">
<div class="container">
<div class="row">
<div class="col-sm-6">
© 2015 Save a Seat<br />Created at MHacks 2015
</div>
</div>
</div>
</footer><!--/#footer-->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="http://maps.google.com/maps/api/js?sensor=true"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/mousescroll.js"></script>
<script src="js/smoothscroll.js"></script>
<script src="js/jquery.prettyPhoto.js"></script>
<script src="js/jquery.isotope.min.js"></script>
<script src="js/jquery.inview.min.js"></script>
<script src="js/wow.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>