-
Notifications
You must be signed in to change notification settings - Fork 0
/
volunteer-app.html
110 lines (100 loc) · 5.19 KB
/
volunteer-app.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
<!DOCTYPE HTML>
<!--
Phantom by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Volunteer App</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
</head>
<body class="is-preload">
<!-- Wrapper -->
<div id="wrapper">
<!-- Header -->
<header id="header">
<div class="inner">
<!-- Nav -->
<nav>
<ul>
<li><a href="#menu">Menu</a></li>
</ul>
</nav>
</div>
</header>
<!-- Menu -->
<nav id="menu">
<h2>Menu</h2>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about-me-temp.html">Resume</a></li>
<li>
<a href="javascript:void(0);" onclick="toggleSubMenu(event)">Projects <span class="arrow">▶</span></a>
<ul class="submenu" id="projects-submenu">
<li><a href="guess-who.html">Guess Who?</a></li>
<li><a href="monk-seal.html">Hawaiian Monkseal</a></li>
<li><a href="volunteer-app.html">Volunteer App</a></li>
<li><a href="canvas-calendar.html">Canvas Calendar</a></li>
</ul>
</li>
</ul>
</nav>
<!-- Main -->
<div id="main">
<div class="inner">
<h1 class="heading-container">
Map-Based Volunteer App
<a href="https://github.com/Hms2301/flutter-application-main" class="icon brands style2 fa-github"><span class="label">GitHub</span></a>
</h1>
<h3>Tech Stack: <span class="smaller-text">Flutter, Firebase, and Google Maps API</span></h3>
<h3 style="color: #B8E0D2; margin-top: -40px;">Role: <span class="smaller-text">Researcher</span></h3>
</body>
<p>I designed a mobile app interface using the Google Maps API and Flutter to promote community service in local areas. Inspired by my experience as the project coordinator for my school's Key Club, I aimed to address common barriers to volunteering, such as lack of time and interest, by providing users with easily accessible volunteer opportunities based on their location.</p>
<p>The application allows various organizations to post volunteer opportunities and collect signup information, ensuring a broad selection of activities for users. Though I primarily focused on the front-end design, the app is intended to be accessible on both iOS and Android devices and to support real-time notifications to keep users informed about new opportunities.</p>
<p>Key features include location-based notifications, which would alert users to nearby volunteer opportunities, increasing their engagement within their communities. The user-friendly interface features a scrollable map as the homepage, offering a clear and navigable view of available activities. Users would be able to create personalized boards and upload images to customize their experience.</p>
<p>To complement the development of this application, I completed a 32-page APA research paper explaining the application's background, purpose, development, and design. This paper provides a comprehensive overview of the project's objectives and the technical and design decisions made throughout the development process.</p>
<section class="resume-section">
<iframe src="images/Final Research Poster.pdf" width="100%" height="1080px"></iframe>
</section>
<div id="enlargedView" class="enlarged-view" onclick="closeEnlargedView()">
<img id="enlargedImage" src="" alt="Enlarged Image">
</div>
<script src="assets/js/carousel.js"></script>
</div>
</div>
<!-- Footer -->
<footer id="footer">
<div class="inner">
<section>
<h2>Contact Information</h2>
<p>
Name: Holden Schermer<br>
Email: <a href="mailto:[email protected]">[email protected]</a><br>
Phone: <a href="tel:+18083887955">+1 (808) 388-7955</a>
</p>
</section>
<section>
<h2>Connect</h2>
<ul class="icons">
<li><a href="https://www.linkedin.com/in/holdenschermer/" class="icon brands style2 fa-linkedin"><span class="label">Dribbble</span></a></li>
<li><a href="https://github.com/HoldenSch" class="icon brands style2 fa-github"><span class="label">GitHub</span></a></li>
<li><a href="mailto:[email protected]" class="icon solid style2 fa-envelope"><span class="label">Email</span></a></li>
<li><a href="tel:+18083887955" class="icon solid style2 fa-phone"><span class="label">Phone</span></a></li>
</ul>
</section>
</div>
</footer>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
<script src="assets/js/sub_nav.js"></script>
</body>
</html>