-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
554 lines (525 loc) · 20 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
<!-- HELLO
-
DevFolio is a minimal, clean, lightweight and fully responsive template for Devlopers!
Created by Anil Seervi.
-
GitHub repo: https://github.com/AnilSeervi/DevFolio
README: https://github.com/AnilSeervi/DevFolio/blob/master/README.md
-
Have fun creating your portfolio on this template!!! -->
<!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.0" />
<!-- Title: add your Portfolio websites's title here -->
<title>Patrick Lesiewicz | Developer</title>
<!-- Add some coding keywords below, Ex: (javascript, yourusername, etc) -->
<meta name="keywords" content="KrsPatrick, Patrick Lesiewicz, javascript" />
<!-- Improve your SEO by adding a small descrption of you -->
<meta name="description" content="Patrick Lesiewicz | Developer" />
<!-- Add a your png Logo to the assets folder and change the href attr accordingly -->
<link rel="icon" type="image/png" href="./assets/devfolio-logo.png" />
<!-- Add your primary-theme color for the value of content -->
<meta name="theme-color" content="#36d1dc" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<!-- Fill content with the URL of this portfolio you'll host -->
<meta property="og:url" content="https://devfolio.js.org/" />
<!-- Fill content with the title of your portfolio(Recommended to use what you put in <title> tag) -->
<meta property="og:title" content="Patrick Lesiewicz | Developer" />
<!-- Give a short description that'll show up when you/someone shares your portfolio on different platform -->
<!-- <meta property="og:description" content="Made using DevFolio Template" /> -->
<!-- Add a thumbnail image in assets folder and fill the content attr with URL to that thumbnail
so that a thumbnail image of your portfolio is shown while shared on other platform -->
<meta
property="og:image"
content="https://devfolio.js.org/assets/devfolio.png"
/>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<!-- Again fill content attr with the URL of this portfolio you'll host -->
<meta property="twitter:url" content="https://devfolio.js.org" />
<!-- Recommended to use the same text used within <title> element -->
<meta property="twitter:title" content="[Your name here] | Developer" />
<!-- short description that shows up while your portfolio is shared -->
<meta
property="twitter:description"
content="Made using DevFolio Template"
/>
<!-- Fill content with the URL to the thumbnail image that you'll put in the assets folder -->
<meta
property="twitter:image"
content="https://anilseervi.vercel.app/assets/devfolio.png"
/>
<!-- link tags -->
<link rel="stylesheet" href="./css/main.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<script src="./javascript/scrollreveal.min.js"></script>
<script
defer
type="text/javascript"
src="./javascript/scrollveal.js"
></script>
<!-- Remove Google Analytics once you have your portfolio website set-up -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-122228201-4"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-122228201-4");
</script>
<!-- End of Google Analytics -->
</head>
<body>
<!-- **** Hero Section **** -->
<div id="hero" class="jumbotron">
<div class="container">
<h1 class="hero-title" class="load-hidden">
Hi, my name is <span class="text-color-main">Patrick Lesiewicz</span>
<br />
I'm a Developer.
</h1>
<p class="hero-cta" class="load-hidden">
<a rel="noreferrer" class="cta-btn cta-btn--hero" href="#about"
>Tell me more</a
>
</p>
</div>
</div>
<!-- /END Hero Section -->
<!-- **** About Section **** -->
<section id="about">
<div class="container">
<h2 class="section-title">About me</h2>
<div class="row about-wrapper">
<div class="col-md-6 col-sm-12">
<div class="about-wrapper__image">
<img
alt="Profile Image"
class="img-fluid rounded shadow-lg"
height="auto"
width="300px"
src="assets/me.jpg"
/>
</div>
</div>
<div class="col-md-6 col-sm-12">
<div class="about-wrapper__info">
<h2 style="font-size: 18px;" class="about-title about-wrapper__info big">Hi There</h2>
<h3 style="font-size: 14px;" class="second-title about-wrapper__info">I´m glad to see you!</h3>
<p class="about-wrapper__info-text">
On this webpage you can see a little bit of my Work.
And if you like it there is also a Form where you can send me a message!
</p>
<p class="about-wrapper__info-text">
</p>
<span class="d-flex mt-3">
<a
rel="noreferrer"
target="_blank"
class="cta-btn cta-btn--resume"
href="assets/Patrick Lesiewicz englisch.pdf"
>
View Resume
</a>
</span>
</div>
</div>
</div>
</div>
</section>
<!-- /END About Section -->
<!-- **** Projects Section **** -->
<section id="projects">
<div class="container">
<div class="project-wrapper">
<h2 class="section-title dark-blue-text">Projects</h2>
<!-- Each .row is a project -->
<div class="row">
<div class="col-lg-4 col-sm-12">
<div class="project-wrapper__text">
<h3 class="project-wrapper__text-title">Nasa Mission Control</h3>
<div>
<p class="mb-4">
This Site is a Nasa Mission Control Dashboard based on real NASA and Space X data.
It´s made with react for the Frontend and Node.js for the Backend. For the database i got MongoDB.
And for deployment i used Docker and Amazons EC2.
</p>
</div>
<a
rel="noreferrer"
target="_blank"
class="cta-btn cta-btn--hero"
href="http://100.24.35.254:8000/"
>
See Live
</a>
<!-- <a
rel="noreferrer"
target="_blank"
class="cta-btn text-color-main"
href="https://krspatrick.github.io/Background-Generator/"
>
Source Code
</a> -->
</div>
</div>
<div class="col-lg-8 col-sm-12">
<div class="project-wrapper__image">
<a rel="noreferrer" href="http://100.24.35.254:8000/" target="_blank">
<div data-tilt class="thumbnail rounded js-tilt">
<img
alt="Project Image"
class="img-fluid"
src="assets/Nasa.PNG"
/>
</div>
</a>
</div>
</div>
</div>
<!-- /END Project -->
<!-- Each .row is a project -->
<div class="row">
<div class="col-lg-4 col-sm-12">
<div class="project-wrapper__text">
<h3 class="project-wrapper__text-title">RoboBuddys</h3>
<div>
<p class="mb-4">
This is a little Website called RoboBuddys. It was created with React.
These cool Robots you can see comes from a site called <a href="https://robohash.org/">robohash.org</a>.
In there you can search for you best RobboBuddy. It´s a PWA with a nice Lighthouse report.
Recently i added Typescript to the Project.
</p>
</div>
<a
rel="noreferrer"
target="_blank"
class="cta-btn cta-btn--hero"
href="https://krspatrick.github.io/RoboBuddys/"
>
See Live
</a>
<!-- <a
rel="noreferrer"
target="_blank"
class="cta-btn text-color-main"
href="#!"
>
Source Code
</a> -->
</div>
</div>
<div class="col-lg-8 col-sm-12">
<div class="project-wrapper__image">
<a rel="noreferrer" href="https://krspatrick.github.io/RoboBuddys/" target="_blank">
<div data-tilt class="thumbnail rounded js-tilt">
<img
alt="Project Image"
class="img-fluid"
src="assets/RobboBuddys.png"
/>
</div>
</a>
</div>
</div>
</div>
<!-- /END Project -->
<!-- Each .row is a project -->
<div class="row">
<div class="col-lg-4 col-sm-12">
<div class="project-wrapper__text">
<h3 class="project-wrapper__text-title">Face Detection App</h3>
<div>
<p class="mb-4">
This app is calles Smart-Eyes. Put in the URL of a picture and it will detect the faces on it. This feature comes form the Clarifai API.
It got a simple react frontend and a node.js/express backend with PostgreSQL as a database for the login. The backend was deployed on Heroku.
It also counts how much pictures you put in there.
</p>
</div>
<a
rel="noreferrer"
target="_blank"
class="cta-btn cta-btn--hero"
href="https://krspatrick.github.io/smart-eyes-client/"
>
See Live
</a>
<!-- <a
rel="noreferrer"
target="_blank"
class="cta-btn text-color-main"
href="#!"
>
Source Code
</a> -->
</div>
</div>
<div class="col-lg-8 col-sm-12">
<div class="project-wrapper__image">
<a rel="noreferrer" href="https://krspatrick.github.io/smart-eyes-client/" target="_blank">
<div data-tilt class="thumbnail rounded js-tilt">
<img
alt="Project Image"
class="img-fluid"
src="assets/FD-app.PNG"
/>
</div>
</a>
</div>
</div>
</div>
<!-- /END Project -->
<!-- Each .row is a project -->
<div class="row">
<div class="col-lg-4 col-sm-12">
<div class="project-wrapper__text">
<h3 class="project-wrapper__text-title">Portfolio Site</h3>
<div>
<p class="mb-4">
Here you can see another Portfolio Site. Just a little bit simpler.
</p>
</div>
<a
rel="noreferrer"
target="_blank"
class="cta-btn cta-btn--hero"
href="https://krspatrick.github.io/Portfolio/"
>
See Live
</a>
<!-- <a
rel="noreferrer"
target="_blank"
class="cta-btn text-color-main"
href="https://krspatrick.github.io/Portfolio/"
>
Source Code
</a> -->
</div>
</div>
<div class="col-lg-8 col-sm-12">
<div class="project-wrapper__image">
<a rel="noreferrer" href="https://krspatrick.github.io/Portfolio/" target="_blank">
<div data-tilt class="thumbnail rounded js-tilt">
<img
alt="Project Image"
class="img-fluid"
src="assets/black-portfolio.png"
/>
</div>
</a>
</div>
</div>
</div>
<!-- /END Project -->
<!-- Each .row is a project -->
<div class="row">
<div class="col-lg-4 col-sm-12">
<div class="project-wrapper__text">
<h3 class="project-wrapper__text-title">RoboFriends</h3>
<div>
<p class="mb-4">
This is my RoboBuddys app. But it was written and deployed with Next.js.
And there are new robots aswell.
</p>
</div>
<a
rel="noreferrer"
target="_blank"
class="cta-btn cta-btn--hero"
href="https://robo-friends-phi.vercel.app/"
>
See Live
</a>
<!-- <a
rel="noreferrer"
target="_blank"
class="cta-btn text-color-main"
href="https://krspatrick.github.io/Portfolio/"
>
Source Code
</a> -->
</div>
</div>
<div class="col-lg-8 col-sm-12">
<div class="project-wrapper__image">
<a rel="noreferrer" href="https://robo-friends-phi.vercel.app/" target="_blank">
<div data-tilt class="thumbnail rounded js-tilt">
<img
alt="Project Image"
class="img-fluid"
src="assets/Robofriends.PNG"
/>
</div>
</a>
</div>
</div>
</div>
<!-- /END Project -->
<!-- Each .row is a project -->
<div class="row">
<div class="col-lg-4 col-sm-12">
<div class="project-wrapper__text">
<h3 class="project-wrapper__text-title">E-Commerce Shop</h3>
<div>
<p class="mb-4">
This is my Krs-Shop. Its build with react and Googles Firebase. With authentication and user login.
This app isnt finished yet, it is still in production.
</p>
</div>
<a
rel="noreferrer"
target="_blank"
class="cta-btn cta-btn--hero"
href="https://krspatrick.github.io/krs-shop-fe/"
>
See Live
</a>
</div>
</div>
<div class="col-lg-8 col-sm-12">
<div class="project-wrapper__image">
<a rel="noreferrer" href="https://krspatrick.github.io/krs-shop-fe/" target="_blank">
<div data-tilt class="thumbnail rounded js-tilt">
<img
alt="Project Image"
class="img-fluid"
src="assets/Krs-Shop.PNG"
/>
</div>
</a>
</div>
</div>
</div>
<!-- /END Project -->
<!-- Each .row is a project -->
<div class="row">
<div class="col-lg-4 col-sm-12">
<div class="project-wrapper__text">
<h3 class="project-wrapper__text-title">Quote Generator</h3>
<div>
<p class="mb-4">
This is a simple Quote-Generator with an fetch call to an API called https://type.fit/api/quotes.
Symple Html, CSS and JS file without any npm packages.
</p>
</div>
<a
rel="noreferrer"
target="_blank"
class="cta-btn cta-btn--hero"
href="https://krspatrick.github.io/Quote-Generator/"
>
See Live
</a>
</div>
</div>
<div class="col-lg-8 col-sm-12">
<div class="project-wrapper__image">
<a rel="noreferrer" href="https://krspatrick.github.io/Quote-Generator/" target="_blank">
<div data-tilt class="thumbnail rounded js-tilt">
<img
alt="Project Image"
class="img-fluid"
src="assets/quote-generator.PNG"
/>
</div>
</a>
</div>
</div>
</div>
<!-- /END Project -->
</div>
</div>
</section>
<!-- /END Projects Section -->
<!-- Contact Section -->
<section id="contact">
<div class="container">
<h2 class="section-title">Contact</h2>
<div class="contact-wrapper">
<p class="contact-wrapper__text">If you like it send me a mail and lets work together!</p>
<a href="mailto:[email protected]" class="cta-btn cta-btn--resume">Send Mail</a>
</div>
</div>
</section>
<!-- END Contact Section -->
<!-- Footer Section -->
<footer class="footer">
<div class="container">
<a href="#hero" class="back-to-top" aria-label="go back to top">
<i class="fa fa-angle-up fa-2x" aria-hidden="true"></i>
</a>
<div class="social-links">
<!-- <a
href="#!"
target="_blank"
rel="noopener noreferrer"
aria-label="twitter"
>
<i class="fa fa-twitter"></i>
</a> -->
<!-- <a
href="#!"
target="_blank"
rel="noopener noreferrer"
aria-label="instagram"
>
<i class="fa fa-instagram"></i>
</a> -->
<!-- <a
href="#!"
target="_blank"
rel="noopener noreferrer"
aria-label="codepen"
>
<i class="fa fa-codepen"></i> -->
<!-- </a> -->
<a
href="https://www.linkedin.com/in/patrick-lesiewicz-1004a41a3/"
target="_blank"
rel="noopener noreferrer"
aria-label="linkedin"
>
<i class="fa fa-linkedin"></i>
</a>
<a
href="https://github.com/KrsPatrick"
target="_blank"
rel="noopener noreferrer"
aria-label="github"
>
<i class="fa fa-github"></i>
</a>
</div>
<hr />
<!-- <p class="footer__text">
© <span id="year"></span> - Template by
<a
href="https://github.com/AnilSeervi"
target="_blank"
rel="noopener noreferrer"
>Anil Seervi</a
>. <br />Made with ♥
</p> -->
</div>
</footer>
<!-- END Footer Section -->
<script>
document.getElementById("year").textContent = new Date().getFullYear();
</script>
<script src="./javascript/vanilla-tilt.min.js"></script>
<script type="text/javascript" src="./javascript/valtilt.js"></script>
</body>
</html>