-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·761 lines (726 loc) · 41.3 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
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Ignition Digital</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/igdi.min.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Kaushan+Script' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700' rel='stylesheet' type='text/css'>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" /> -->
<link rel="icon" type="image/png" href="favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="favicon-16x16.png" sizes="16x16" />
</head>
<body id="page-top" class="index">
<!-- Navigation -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<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 page-scroll" href="#page-top"><img src="img/logo.png" /></a>
</div>
<div class="collapse navbar-collapse" id="navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li class="hidden">
<a href="#page-top"></a>
</li>
<li>
<a class="page-scroll" href="#services">Services</a>
</li>
<li>
<a class="page-scroll" href="#process">Our Process</a>
</li>
<li>
<a class="page-scroll" href="#portfolio">Work</a>
</li>
<li>
<a class="page-scroll" href="#team">Team</a>
</li>
<li>
<a class="page-scroll" href="#contact">Contact</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<!-- Header -->
<header>
<div class="container">
<div class="intro-text">
<div class="intro-lead-in">Make your next idea a</div>
<div class="intro-heading" id="header-sayings"></div>
<a href="#services" class="page-scroll btn btn-xl main-btn">Find Out How</a>
</div>
</div>
</header>
<!-- Services Section -->
<section id="services" class="bg-light-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Services</h2>
<h3 class="section-subheading text-muted">Ignition Digital offers the complete package for your digital needs: from simple websites to full-stack web and/or mobile apps, we have you covered.</h3>
</div>
</div>
<div class="row text-center">
<div class="service-col col-sm-6 col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-mobile fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Mobile Apps</h4>
<p class="text-muted">Need a custom iOS app, Android app, or both? We specialize in native and cross-platform mobile application development.</p>
</div>
<div class="service-col col-sm-6 col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-laptop fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Websites & Web Apps</h4>
<p class="text-muted">Be it a simple presence page or a full-blown web application, we'll design your next web-based solution with you from the ground up.</p>
</div>
<div class="service-col col-sm-6 col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-shopping-cart fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Email & E-Commerce</h4>
<p class="text-muted">Need a custom email address for your domain? How about e-commerce support, a blog, or a newsletter signup? Yep, we've got you covered.</p>
</div>
<div class="service-col col-sm-6 col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-line-chart fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Custom Solutions & Consultancy</h4>
<p class="text-muted">We pride ourselves on our unique method of tackling real-world problems. Let us help you with your next project or improve your internal workflow in ways you didn't know you needed.</p>
</div>
<div class="service-col col-sm-6 col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-database fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Database, Networking, Infrastructure</h4>
<p class="text-muted">Our services are not limited to software. We will happily meet your hardware needs with custom networking solutions, database installations, infrastructure optimization, and more.</p>
</div>
<div class="service-col col-sm-6 col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-camera-retro fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Media, Design, Marketing, SEO</h4>
<p class="text-muted">Your brand identity is everything—let our design team step you through it. From brand guidelines and logo design to video story production to social media strategy, we produce it all.</p>
</div>
</div>
</div>
</section>
<!-- Process Section -->
<section id="process">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Our Process</h2>
<h3 class="section-subheading text-muted">Building software doesn't have to be hard. Let us step you through it.</h3>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<ul class="timeline">
<li>
<div class="timeline-image">
<img class="img-circle img-responsive" src="img/about/1.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>Getting To Know You</h4>
</div>
<div class="timeline-body">
<p class="text-muted">Our primarily language is people, not computers. We want to know you, your ambitions, and your goals to establish an actual relationship before breaking ground on your next "Big Idea."</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img class="img-circle img-responsive" src="img/about/2.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>Laying the Groundwork</h4>
</div>
<div class="timeline-body">
<p class="text-muted">We see programming as one of the least significant things we do around here. Careful planning, designing a solid infrastructure, and good communication are all crucial before writing the first line of code.</p>
</div>
</div>
</li>
<li>
<div class="timeline-image">
<img class="img-circle img-responsive" src="img/about/3.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>Transparent, Iterative Execution</h4>
</div>
<div class="timeline-body">
<p class="text-muted">Transparency is fundamental, and you have every right to know what we're doing behind the curtain. In fact, there is no curtain. We'll constantly re-prioritize as your needs change, and deliver functional pieces of your product in 1-2 week iterations.</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img class="img-circle img-responsive" src="img/about/4.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>Ship, Rinse, Repeat</h4>
</div>
<div class="timeline-body">
<p class="text-muted">In case you didn't already know, software is never <i>really</i> finished. Adding new features, managing bugs, and providing technical support all play into the mix. Like we said, maintaining a lasting relationship is everything to us!</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<a class="page-scroll" href="#contact">
<div class="timeline-image">
<h4>Ready?
<br>Let's Get
<br>Started!
</h4>
</div>
</a>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Portfolio Grid Section -->
<section id="portfolio" class="bg-light-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Our Work</h2>
<h3 class="section-subheading text-muted">The best way to illustrate the breadth of our services is to show you a few of our happy customers.</h3>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModalSmartCare" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-search fa-3x"></i>
</div>
</div>
<img src="img/portfolio/smartcare.jpg" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Smart Care</h4>
<p class="text-muted">Custom Care Home Automation</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModalCatholify" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-search fa-3x"></i>
</div>
</div>
<img src="img/portfolio/catholify.jpg" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Catholify</h4>
<p class="text-muted">Social Devotional Mobile App</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModalSae" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-search fa-3x"></i>
</div>
</div>
<img src="img/portfolio/sae.jpg" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>SAE International</h4>
<p class="text-muted">Realtime Scoring & Mobile App</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModalCartoTracks" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-search fa-3x"></i>
</div>
</div>
<img src="img/portfolio/cartotracks.jpg" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>CartoTracks</h4>
<p class="text-muted">Custom Mapping App</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModalBlacktop" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-search fa-3x"></i>
</div>
</div>
<img src="img/portfolio/blacktop.jpg" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Blacktop Car Club</h4>
<p class="text-muted">Social Media Mobile App</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModalFitz" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-search fa-3x"></i>
</div>
</div>
<img src="img/portfolio/fitz.jpg" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Fitz-Thors Engineering</h4>
<p class="text-muted">Responsive Website & CMS</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModalSarahKroger" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-search fa-3x"></i>
</div>
</div>
<img src="img/portfolio/sarahkroger.jpg" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Sarah Kroger</h4>
<p class="text-muted">Artist Website & Custom Email</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModalNtti" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-search fa-3x"></i>
</div>
</div>
<img src="img/portfolio/ntti.jpg" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>National True-Test Inc.</h4>
<p class="text-muted">Industrial Mobile App</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModalStJohn" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-search fa-3x"></i>
</div>
</div>
<img src="img/portfolio/stjohn.jpg" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>St. John the Baptist Church</h4>
<p class="text-muted">Campus Network Installation</p>
</div>
</div>
</div>
</div>
</section>
<!-- Team Section -->
<section id="team">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Our Amazing Team</h2>
<h3 class="section-subheading text-muted">We love getting to know you, so here's a bit about us!</h3>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/eric.jpg" class="img-responsive img-circle" alt="">
<h4>Eric Dooley</h4>
<p class="text-muted">Development Lead, Founder/CEO</p>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/mike.jpg" class="img-responsive img-circle" alt="">
<h4>Mike Zieman</h4>
<p class="text-muted">Management Lead, CTO</p>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/gin.jpg" class="img-responsive img-circle" alt="">
<h4>Ginny Dooley</h4>
<p class="text-muted">Marketing Lead</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/joe.jpg" class="img-responsive img-circle" alt="">
<h4>Joseph Schultz</h4>
<p class="text-muted">Lead Developer</p>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/ryan.jpg" class="img-responsive img-circle" alt="">
<h4>Ryan Sears</h4>
<p class="text-muted">Lead Designer</p>
</div>
</div>
<div class="col-sm-4" style="height: 300px; line-height: 300px">
<p class="large text-muted" style="display: inline-block; vertical-align: middle;"> If there's one ambition we all share, it's to leave the world in better shape than we found it. We're committed to bringing you a fantastic experience and stellar solutions. <a class="page-scroll" href="#contact">Let's get started</a>.</p>
</div>
</div>
</div>
</section>
<section id="contact">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-4">
<img src="img/bham-seal.png" class="img-responsive"/>
</div>
<div class="col-xs-12 col-sm-6 col-md-8">
<h2 class="section-heading">Contact Us</h2>
<h3 class="section-subheading text-white" style="font-size:18px">Drop us a line at <a href="mailto:hello@igdit.com">hello@igdit.com</a> and tell us what we can solve for you.</h3>
<h3 class="section-heading address">
Ignition Digital LLC<br>
PO Box 59090<br>
Birmingham, AL 35259
</h3>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="row">
<div>
<span class="copyright">
Copyright ©
<script>document.write(new Date().getFullYear())</script>
Ignition Digital LLC
</span>
</div>
</div>
</div>
</footer>
<!-- Portfolio Modals -->
<!-- Use the modals below to showcase details about your portfolio projects! -->
<!-- Portfolio Modal Fitz -->
<div class="portfolio-modal modal fade" id="portfolioModalFitz" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Fitz-Thors Engineering</h2>
<p class="item-intro text-muted">Responsive Website & CMS<br> <a href="https://www.fitz-thors.com" target="_blank">fitz-thors.com</a></p>
<a href="https://www.fitz-thors.com" target="_blank"><img class="img-responsive center-block" src="img/portfolio/fitz-preview.jpg" alt=""></a>
<p>As with many of our clients, Fitz-Thors came to us with an existing website, but one that was not very mobile-friendly.
Using the latest technologies and responsive design principles, their site now looks fantastic on any device.
And with the ease of our Content Management System (CMS), they can edit/maintain page content themselves with little more effort than it takes to write an email.</p>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal CartoTracks -->
<div class="portfolio-modal modal fade" id="portfolioModalCartoTracks" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>CartoTracks</h2>
<p class="item-intro text-muted">Custom Mapping App<br><a href="https://cartotracks.com/" target="_blank">cartotracks.com</a></p>
<a href="https://cartotracks.com/" target="_blank"><img class="img-responsive img-centered" src="img/portfolio/cartotracks-preview.jpg" alt=""></a>
<p>CartoTracks can build you any type of map you need. Navigating through offroad trails or events in the middle of the desert like <a href="https://www.ultra4racing.com/" target="_blank">King of the Hammers</a>?
CartoTracks maps can visualize whatever your venue has to offer and doesn't need an internet connection once you've downloaded them!</p>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal Catholify -->
<div class="portfolio-modal modal fade" id="portfolioModalCatholify" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Catholify</h2>
<p class="item-intro text-muted">Social Devotional Mobile App<br><a target="_blank" href="https://catholify.com">catholify.com</a></p>
<a target="_blank" href="https://catholify.com"><img class="img-responsive img-centered" src="img/portfolio/catholify-preview.jpg" alt=""></a>
<div>
<a class="appstore-btn" target="_blank" href="https://itunes.apple.com/us/app/catholify/id738897570">
<img src="img/appstore-button.png" alt="Available on the iPhone App Store">
</a><a class="appstore-btn" target="_blank" href="https://play.google.com/store/apps/details?id=com.igdit.catholify">
<img src="img/googleplay-button.png" alt="Get it on Google Play">
</a>
</div>
<p>Catholify is a social devotional app we built for the Catholic church. In addition to the countless devotional
prayers and resources available in the app, users can also find faith community by searching service times,
participating in virtual prayer events, and connecting with one another through private and group chats.
Available in the iOS App Store and on Google Play.
</p>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal Sarah Kroger -->
<div class="portfolio-modal modal fade" id="portfolioModalSarahKroger" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Sarah Kroger</h2>
<p class="item-intro text-muted">Singer/Songwriter Responsive Website
<br><a target="_blank" href="https://sarahkroger.com">sarahkroger.com</a></p>
<a target="_blank" href="https://sarahkroger.com"><img class="img-responsive img-centered" src="img/portfolio/sarahkroger-preview.jpg" alt=""></a>
<p>Sarah Kroger is a world-renowned Christian worship leader and musician. We meet the demands of her ever-growing
ministry through a customized website/blog/CMS, email services, booking & newsletter subscriptions, and more.
Let us do the same for you!
</p>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal Ntti -->
<div class="portfolio-modal modal fade" id="portfolioModalNtti" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>National True-Test Inc.</h2>
<p class="item-intro text-muted">Industrial Mobile App
<br><a target="_blank" href="https://nationaltrue-test.com/">nationaltrue-test.com</a></p>
<a target="_blank" href="https://nationaltrue-test.com/"><img class="img-responsive img-centered" src="img/portfolio/ntti-preview.jpg" alt=""></a>
<p>National True-Test Inc. is a commercial HVAC company with loads of industry experience.
When Billy approached us with spreadsheets full of intricate calculations and asked
if we could convert them into an app, we were happy to make it a reality.
The <i>Test & Balance / Commissioning Calculator</i> enables him and his employees
to field test their equipment and installations with ease, from a device that's already in everyone's pocket.</p>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal Blacktop -->
<div class="portfolio-modal modal fade" id="portfolioModalBlacktop" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Blacktop Car Club</h2>
<p class="item-intro text-muted">
Social Media Mobile App<br>
<a target="_blank" href="https://blacktopcarclub.com">blacktopcarclub.com</a>
</p>
<a target="_blank" href="https://blacktopcarclub.com">
<img class="img-responsive img-centered" src="img/portfolio/blacktop-preview.jpg" alt="">
</a>
<p>To say that Patrick is a "car guy" is an understatement. When his car enthusiast Facebook group
grew to 50,000 followers, he thought it was time to take things more seriously. We sat down with him
and got started on Blacktop—a cross-platform, subscription-based social media app for car enthusiasts
to connect, share their rides, and buy parts so they can #GetBusyDriving!
</p>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal SmartCare -->
<div class="portfolio-modal modal fade" id="portfolioModalSmartCare" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Smart Solutions</h2>
<p class="item-intro text-muted">Custom Care Home Automation
<br><a target="_blank" href="https://www.mysmartsolutions.com/">mysmartsolutions.com</a></p>
<a target="_blank" href="https://www.mysmartsolutions.com/"><img class="img-responsive img-centered" src="img/portfolio/smartcare-preview.jpg" alt=""></a>
<p>Kevin is making a big impact in the world with Smart Solutions.
Designed to assist those with various mobility impairments, Smart Care makes it easier
than ever to control your home through voice, Bluetooth switches, and even eye-tracking.
It is also designed to assist caregivers in monitoring the home and their clients more effectively.
We built iOS and Windows UWP apps for Smart Solutions to use in both the residential and clinical industries,
as well as custom interfacing with medical BLE devices such as smart blood pressure monitors and pulse oximetry.
</p>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal Sae -->
<div class="portfolio-modal modal fade" id="portfolioModalSae" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>SAE International: Collegiate Design Series</h2>
<p class="item-intro text-muted">Realtime scoring system, custom software solutions, & more<br><a target="_blank" href="https://www.sae.org/attend/student-events">www.sae.org</a></p>
<a target="_blank" href="https://www.sae.org/attend/student-events"><img class="img-responsive img-centered" src="img/portfolio/sae-preview.jpg" alt=""></a>
<p>SAE International's Collegiate Design Series (CDS) hosts thousands of students, spectators, and vendors across over a dozen events in the US each year.
Through our ongoing relationship with <a href="https://digitalengineeringsolutions.com/" target="_blank">Digital Engineering Solutions</a>, we continue to provide new solutions for SAE,
including realtime scoring systems, onsite wireless networking, live video production, and cross-platform mobile apps per competition series (presently
<a href="https://play.google.com/store/apps/details?id=org.collegiatedesign.baja.cdsapp" target="_blank">Baja SAE</a>,
<a href="https://play.google.com/store/apps/details?id=org.collegiatedesign.fsae.cdsapp" target="_blank">Formula SAE</a>,
<a href="https://itunes.apple.com/us/app/sae-aero-design/id1439826598" target="_blank">SAE Aero Design</a>, and
<a href="https://itunes.apple.com/us/app/autodrive-challenge/id1371868594" target="_blank">AutoDrive Challenge</a>)</p>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal St John -->
<div class="portfolio-modal modal fade" id="portfolioModalStJohn" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>St. John the Baptist Church</h2>
<p class="item-intro text-muted">Campus Network Installation</p>
<img class="img-responsive img-centered" src="img/portfolio/stjohn-preview.jpg" alt="">
<p>St. John's had quite a mess of routers, modems, and multiple ISPs spread across their campus.
After sitting down and ironing out their "hot spots," we were able to provide a site-wide
installation serving WiFi to all of their facilities from a single ISP connection.</p>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<script src="js/classie.js"></script>
<script src="js/cbpAnimatedHeader.js"></script>
<script src="js/igdi.js"></script>
</body>
</html>