-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (59 loc) · 2.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Jeffrey Laederach</title>
<link rel="icon" type="img/ico" href="img/favicon.png">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css">
</head>
<body class="text-center">
<div class="cover-container d-flex h-100 p-3 mx-auto flex-column">
<header class="masthead mb-auto">
<div class="inner">
<h3 class="masthead-brand">Jeffrey Laederach</h3>
<nav class="nav nav-masthead justify-content-center">
<a class="nav-link active" href="#home">Home</a>
<a class="nav-link" href="#portfolio" data-bs-toggle="modal" data-bs-target="#portfolioModal">Portfolio</a>
<a class="nav-link" href="files/JeffreyLaederachResume.pdf" target="_blank">Resume</a>
</nav>
</div>
</header>
<main role="main" class="inner cover translucent-background">
<h1 class="cover-heading">About Me</h1>
<div class="hline"></div>
<p class="lead">Hello, I'm Jeffrey. I'm currently a Junior at Manhattan University pursuing a B.S. in Mechanical Engineering with a Concentration in Applied Mathematics and a Minor in Business.
I'm passionate about energy, buildings, math, data science, software development, and engineering.</p>
<div class="social-media-icons">
<a href="https://www.linkedin.com/in/jeffrey-laederach"><i class="bi bi-linkedin" style="font-size: 2rem;"></i></a>
<a href="https://github.com/JeffreyLaederach"><i class="bi bi-github" style="font-size: 2rem;"></i></a>
<a href="mailto: [email protected]"><i class="bi bi-envelope-fill" style="font-size: 2rem;"></i></a>
</div>
</main>
<footer class="mastfoot mt-auto">
<div class="inner">
<p>© 2024 Jeffrey Laederach - All Rights Reserved.</p>
</div>
</footer>
</div>
<div class="modal fade" id="portfolioModal" tabindex="-1" aria-labelledby="portfolioModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5" id="portfolioModalLabel">Coming Soon!</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
In the meantime, you can view my public code repositories on GitHub or projects on LinkedIn!
</div>
<div class="modal-footer">
<button type="button" class="btn" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<script src="js/bootstrap.bundle.min.js"></script>
</body>
</html>