-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
268 lines (265 loc) · 14.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
<!DOCTYPE html>
<!-- this is cool! -->
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Luke Mueller - Portfolio</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<<<<<<< Updated upstream
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,500&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<header class="page-header">
<!-- Add my logo here -->
<img src="img/logo.png" alt="logo" class="page-header__item">
<nav class="main-navigation page-header__item">
<ul role="menubar" class="navigation-list">
<li role="presentation">
<a href="index.html" role="menuitem" class="navigation-list__item navigation-list__item--active">Home</a>
</li>
<li role="presentation">
<a href="about.html" role="menuitem" class="navigation-list__item">About Me</a>
</li>
<li role="presentation">
<a href="work.html" role="menuitem" class="navigation-list__item">Work</a>
</li>
<li role="presentation">
<a href="contact.html" role="menuitem" class="navigation-list__item">Contact</a>
</li>
</ul>
</nav>
</header>
<div class="profile">
<!-- Add my portrait here -->
<img src="img/portrait.JPG" class="profile__portrait" alt="Luke Mueller Portrait">
<h1>Hello World!</h1>
<p class="profile__description">My name is Luke Mueller. I am a <span>web</span> developer from the United States.</p>
<a href="https://github.com/muellerluke">Check out some of my code</a>
</div>
<footer class="page-footer">
<p>Find me on</p>
<div class="social-media">
<img src="img/github_icon.svg" alt="github">
<img src="img/twitter_icon.svg" alt="twitter">
<img src="img/linkedin_icon.svg" alt="linkedin">
</div>
</footer>
</body>
=======
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Fira+Code&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body onload="typeWriter()">
<header>
<nav class="navbar navbar-expand-sm navbar-dark fixed-top">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="#profile-spacer" aria-label="#profile">Home<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#projects-spacer" aria-label="#projects">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about-spacer" aria-label="#about">About Me</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact-spacer" aria-label="#contact">Contact</a>
</li>
</ul>
</div>
</nav>
</header>
<div id="profile-spacer" class="spacer"></div>
<div class="profile" id="profile">
<div class="row">
<div class="col">
<img src="img/portrait.jpg" id="portrait" alt="my portrait">
</div>
</div>
<div class="row">
<div class="col">
<span id="typeWriterText"></span>
</div>
</div>
</div>
<div id="projects-spacer" class="spacer"></div>
<div id="projects">
<div class="row">
<h1 class="col-12 section-header">My Projects</h1>
<!-- Grid items will live here -->
<div class="col-lg-4 col-md-6 col-sm-12 project_container">
<h2>React Frontend for Node.js API</h2>
<img src="img/react-movie.jpg" class="grid__item-image" alt="React Movie Prject Image">
<p>
Created a frontend with React for the NodeJS API. This included many
components such as the login view, movie view, registration view,
profile view and many more.
<a target="_blank" href="https://myflixluke.herokuapp.com/client/"
>See it here.</a
>
</p>
<a target="_blank" href="https://github.com/muellerluke/movie_api"
>See project on GitHub</a
>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 project_container">
<h2>Angular Quiz</h2>
<img src="img/angular-quiz.jpg" class="grid__item-image" alt="Angular Quiz Project Image">
<p>
Created an Angular application that gets data from json files to
populate a quiz. The results are then shown at the end.
<a
target="_blank"
href="https://muellerluke.github.io/my-awesome-quiz-app/welcome"
>See it here.</a
>
</p>
<a
target="_blank"
href="https://github.com/muellerluke/my-awesome-quiz-app"
>See project on GitHub</a
>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 project_container">
<h2>Vue Todo List</h2>
<img src="img/vue-todo.jpg" class="grid__item-image" alt="Vue Todo Project Image">
<p>
Created a todo list using Vue. Users are able to create, check off,
and edit items on the todo list.
<a target="_blank" href="https://muellerluke.github.io/todo"
>See it here.</a
>
</p>
<a target="_blank" href="https://github.com/muellerluke/todo"
>See project on GitHub</a
>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 project_container">
<h2>Pokedex Using jQuery</h2>
<img src="img/pokedex.jpg" class="grid__item-image" alt="jQuery Pokedex Project Image">
<p>
Created a Pokedex application using jQuery. The application get data
from a pokedex API and populates cards using jQuery. When clicked
on, a modal will appear with more information.
<a target="_blank" href="https://muellerluke.github.io/pokedexRepo-jQuery/"
>See it here.</a
>
</p>
<a
target="_blank"
href="https://github.com/muellerluke/pokedexRepo-jQuery"
>See project on GitHub</a
>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 project_container">
<h2>Node + HTML + JS Course Rating Website</h2>
<img src="img/coursifyit.jpg" class="grid__item-image" alt="CoursifyIt Project Image">
<p>
This is a business I am working on. The backend is written in Node using MongoDB to store the data and the frontend is written in Javascript and HTML.
I am currently working on converting the site over to a progressive web application written in React. Users are able to create an account, verify that account via email verification, rate individual aspects of courses, and view ratings for classes.
<a target="_blank" href="https://coursifyit.com">See it here.</a>
</p>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 project_container">
<h2>React-Native Chat Application</h2>
<img src="img/react-native-app.jpg" class="grid__item-image" alt="React-Native Chat Project Image">
<p>
A React-Native application for chatting developed using React-Native Gifted Chat. The application also allows users to send and receive their location and images.
Images can also be taken directly from the application using Expo Image Picker and locations are displayed using React-Native Maps.
Information is stored using a Google Firebase realtime database.
</p>
<a
target="_blank"
href="https://github.com/muellerluke/ChatApp"
>See project on GitHub</a
>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 project_container">
<h2>Node.js API</h2>
<p>
Used NodeJS and MongoDB to create an API for a movie Application.
This included writing the endpoints for all of the requests and
adding information into the database.
</p>
<a target="_blank" href="https://github.com/muellerluke/movie_api"
>See project on GitHub</a
>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 project_container">
<h2>React Data Visualization Progressive Web Application</h2>
<p>
An application that requests data from the MeetUp API (using token authentication and AWS services)
then displays that data using React and Rechart. I also wrote test cases for the project as well utilizing Jest.
<a target="_blank" href="https://muellerluke.github.io/meetup/">See it here.</a>
</p>
<a
target="_blank"
href="https://github.com/muellerluke/meetup"
>See project on GitHub</a
>
</div>
</div>
</div>
<div id="about-spacer" class="spacer"></div>
<div id="about">
<div class="row" id="about__row">
<div class="col-lg-6 col-md-6 col-sm-12" id="about__colored-col">
<h1 class="section-header">About Me</h1>
<p class="section-paragraph">I am currently a student at Wisconsin Lutheran College in Milwaukee studying Business Marketing, but I am also a graduate of the Career Foundry Full Stack Development Course.
While working on this course, I used the skills and languages I learned, such as Node, MongoDB, and vanilla Javascript, to launch a <a href="https://www.coursifyit.com" target="_blank">website</a> for rating college classes. Students are able to read and write reviews based on a number of
aspects such as homework difficulty and amount, exam difficulty, how well the teacher teaches, and more. After learning more about progressive web applications however, I decided to rewrite the website in React and convert it into a progressive web application.
I am an extremely motivated and morally centered individual, striving always to be successful at the highest level. I have a passion for fitness, specifically powerlifting and also enjoy spending time with my family outdoors.
Volunteering is also a large part of my life. I volunteered at numerous sports camps and spent a several weeks in Florida after Hurricane Michael hit and was greatly blessed with the opportunity to help large number of families.
</p>
</div>
<div class="col-lg-6 col-md-6 col-sm-12" id="about__noncolored-col">
<div class="grid" id="about__grid">
<img src="img/hiking.jpg" class="about__image" alt="hiking">
<img src="img/powerlifting.jpg" class="about__image" alt="powerlifting">
<img src="img/hiking-with-family.jpg" class="about__image" alt="hiking with family">
<img src="img/volunteering.jpg" class="about__image" alt="volunteering">
</div>
</div>
</div>
</div>
<div id="contact-spacer" class="spacer"></div>
<div id="contact">
<div class="row" id="contact__row">
<div class="col-lg-6 col-md-6 col-sm-12" id="contact__noncolored-col">
<span id="contactTypeWriter"></span>
</div>
<div class="col-lg-6 col-md-6 col-sm-12" id="contact__colored-col">
<p class="section-paragraph">Email: [email protected]<br> Instagram: muellerluke240</p>
<div class="page-footer">
<p class="social-media-text section-paragraph">Find me on</p>
<div class="social-media">
<a href="https://twitter.com/muellerluke24">
<img src="img/twitter_icon.svg" alt="twitter">
</a>
<a href="https://github.com/muellerluke">
<img src="img/github_icon.svg" alt="github">
</a>
<a href="https://www.linkedin.com/in/luke-mueller-818b701a1/" >
<img src="img/linkedin_icon.svg" alt="linkedin">
</a>
</div>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script src="js/index.js"></script>
</body>
>>>>>>> Stashed changes
</html>