-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
106 lines (94 loc) · 4.63 KB
/
Copy pathabout.html
File metadata and controls
106 lines (94 loc) · 4.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Rally - About</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" type="image/x-icon" href="/img/favicon.ico" />
</head>
<body>
<section class="navigation">
<div class="nav-container">
<div class="brand">
<a href="/"></a>
</div>
<a href="/"><img class="logo" src="/img/logo.png"></a>
<nav>
<div class="nav-mobile">
<a id="nav-toggle" href="#"><span></span></a>
</div>
<ul class="nav-list">
<li><a href="/">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a>
<ul class="nav-dropdown">
<li><a href="mailto:jeriesd1998@gmail.com">Jeries Dababneh</a></li>
<li><a href="mailto:me@matthewmuccio.com ">Matthew Muccio</a></li>
<li><a href="mailto:mwilker1@umd.edu">Michael Wilkerson</a></li>
</ul>
</li>
<li><a href="/register.html">Register</a></li>
<li><a href="/signin.html">Sign In</a></li>
</ul>
</nav>
</div>
</section>
<section class="body about-body">
<div class="about-elements">
<h1>About Rally</h1>
<p class="body-text">Developed by three UMD students in April 2018 for Bitcamp, Rally is a team creation facilitation and collaboration platform. You do the hard part: planning, coordinating, and running an event. We can assist your attendees in forming a team for the event before it even begins, whether they just need one more team member or a full team! After having attended more than ten different hackathons between the members of our project team, we found that forming teams for an event like this tended to be rather confusing and frustrating. Further, team formation typically occurs right before an event or sometimes even during it. We knew there had to be a better solution to the problem, and that's where Rally comes in.</p>
<img src="/img/bitcamp17.jpg" style="max-width: 700px;">
<p class="body-text">While the application for Rally in the context of a hackathon is apparent, there also exists a variety of other uses for the platform. If there is an event, formal or informal, where people in attendance need to collaborate and divide into discrete teams or groups, Rally is the tool to use. From creating specialized study groups in a course, to putting together teams for a pick-up basketball game, to finding the right people with the right skills for a hackathon, everyone can Rally.</p>
</div>
</section>
<section class="footer">
<div class="contain">
<div class="col">
<h1>Rally™ 2018</h1>
<ul>
<li><a style="color: #999999; cursor: default;">Matthew Muccio</a></li>
<li><a style="color: #999999; cursor: default;">Jeries Dababneh</a></li>
<li><a style="color: #999999; cursor: default;">Mike Wilkerson</a></li>
</ul>
</div>
<div class="col">
<h1>Our Team</h1>
<ul>
<li><a href="http://www.matthewmuccio.com" target="_blank">Matthew Muccio - Web App</a></li>
<li><a href="https://github.com/therealjeries" target="_blank">Jeries Dababneh - iOS App</a></li>
<li><a href="https://github.com/mwilks" target="_blank">Mike Wilkerson - Design</a></li>
</ul>
</div>
<div class="col">
<h1>This Site</h1>
<ul>
<li><a href="/about.html">About</a></li>
<li><a href="/register.html">Register</a></li>
<li><a href="/signin.html">Sign In</a></li>
</ul>
</div>
<div class="col">
<h1>Get in Touch</h1>
<ul>
<li><a href="https://github.com/matthewmuccio/RallyApp" target="_blank">GitHub</a></li>
<li><a href="https://www.facebook.com/matthewmooch" target="_blank">Facebook</a></li>
<li><a href="https://twitter.com/mattmuccio" target="_blank">Twitter</a></li>
</ul>
</div>
<div class="col">
<h1>More Projects</h1>
<ul>
<li><a href="http://blockygame.com/" target="_blank">Blocky (Bitcamp 2017)</a></li>
<li><a href="https://github.com/matthewmuccio/QuotaiOS" target="_blank">Quota (HoyaHacks 2017)</a></li>
<li><a href="http://matthewmuccio.com/webglglobe/" target="_blank">WebGL Globe (Fall 2016)</a></li>
</ul>
</div>
<div class="clearfix"></div>
</div>
</section>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>