-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
120 lines (96 loc) · 4.77 KB
/
about.html
File metadata and controls
120 lines (96 loc) · 4.77 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/index.css">
<link rel="shortcut icon" href="img/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Home Chore Tracker | About</title>
</head>
<body>
<header>
<nav id="navbox">
<a href="#" onclick="hideMenu()" class="showmemobile">
<img src="img/Menu.svg" alt="Hamburger Menu">
</a>
<a href="index.html" class="hidememobile" id="hidebox0">
<img src="img/Menu.svg" alt="Hamburger Menu">
<div id="hidebox" class="hideme homelink">Home</div>
</a>
<a href="about.html">
<img src="img/UserProfile.svg" alt="Person">
<div id="hidebox2" class="hideme aboutlink">About Us</div>
</a>
<a href="https://fe.home-chore-tracker.now.sh/signin">
<img src="img/StarPoints.svg" alt="Star">
<div id="hidebox3" class="hideme starlink">Login</div>
</a>
</nav>
</header>
<section class="contain">
<h1>Our Team</h1>
<div class="iOSteam">
<h3>IOS ENGINEERS</h3>
<img src="img/Jerry-Haaser.png" alt="Person">
<a href="https://github.com/JerryHaaser">
<h2>Jerry Haaser</h2>
</a>
<img src="img/Isaac-Lyons.png" alt="Person">
<a href="https://github.com/Isvvc">
<h2>Isaac Lyons</h2>
</a>
<img src="img/Ciara-Beitel.png" alt="Person">
<a href="https://github.com/ladybeitel">
<h2>Ciara Beitel</h2>
</a>
<p class="himeme">The IOS team was in essencial in helping with the production of the IOS App of <i>Home Chore Tracker</i> They build the UI for the app and made sure all of the models were written. Thanks to them, the app was not only looking good but was functional as well! They worked with the Backend Developer Joshua Shockley to have all of the servers connected and ready for use.</p>
</div>
<div class="webuidev">
<h3>WEB UI DEVELOPERS</h3>
<img src="img/Tyge-Davis.png" alt="Person">
<a href="https://github.com/tygedavis">
<h2>Tyge Davis</h2>
</a>
<img src="img/Russ-Hacker.png" alt="Person">
<a href="ttps://github.com/newbi462/">
<h2>Russ Hacker</h2>
</a>
<p class="himeme">The Web UI developers made a Landing\Marketing page and the About page. They put together the color palette, with help from Ciara IOS Teamn the app side, as the theme of these pages and using HTML and LESS they designed the layouts of the pages.</p>
</div>
<div class="reactteam">
<h3>REACT TEAM</h3>
<img src="img/Daniel-Ajadi.png" alt="Person">
<a href="https://github.com/theolamide">
<h2>Daniel Ajadi</h2>
</a>
<img src="img/Akak-Almazbekova.png" alt="Person">
<a href="https://github.com/Aakak">
<h2>Akak Almazbekova</h2>
</a>
<p class="himeme">Used React to connect the front end to the app backend. Set up Login/Signup Pages built and ready to handle the token being sent between backend end-points and front end. Made use of front end styling platforms such as Material UI, Reactstrap, and the like to maintain a consistent style across web and app.</p>
</div>
<div class="backenddev">
<h3>BACKEND DEVELOPER</h3>
<img src="img/Joshua-Shockley.png" alt="Person">
<a href="https://github.com/joshua-shockley">
<h2>Joshua Shockley</h2>
</a>
<p class="himeme">Responsible for install and function of Node/Express and all required packages for things like CORS, Body-Parser, JWT installed, and User Login/Signup endpoints built out including the User Models Use JWT/Sessions strategies learned in Authentication React app and Backend App talking to one another. Focused on CORS issues, Data Migrations, and Seeds set up for mock data tests.</p>
</div>
<div class="projectlead">
<h3>PROJECT LEAD</h3>
<img src="img/Hayden-Hastings.png" alt="Person">
<a href="https://github.com/Hayden32">
<h2>Hayden Hastings</h2>
</a>
<p class="himeme">Project Lead for the Home Chore Tracker. Set daily goals for the each team to ensure that the project was done on time and fully functional.</p>
</div>
</section>
<footer>
<a href="https://fe.home-chore-tracker.now.sh/">Sign Up</a>
</footer>
<!-- Java Script -->
<script src="js/animation.js"></script>
</body>
</html>