-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (89 loc) · 4.07 KB
/
index.html
File metadata and controls
103 lines (89 loc) · 4.07 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<title>Home | Spotech.dev</title>
<link rel="icon" type="image/png" href="/assets/favicon.png">
<link rel="stylesheet" type="text/css" href="/style.css">
<link rel="stylesheet" type="text/css" href="/navbar.css">
<link href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap" rel="stylesheet">
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<script>
$(function () {
$("#navbar").load("/navbar.html");
});
</script>
<body>
<canvas id="spaceMesh" aria-hidden="true"></canvas>
<main class="overlay">
<section class="hero">
<div class="planet-ui" id="heroPlanet">
<div class="planet-inner">
<div class="brand">Haniel M</div>
<div class="tagline">PCB Designer, Inventor, and Car Guy</div>
<div class="hero-links">
<a class="btn" href="https://www.linkedin.com/in/haniel-mikhaiel-a11506374/">
<i class="ri-linkedin-box-fill"
style="font-size:16px; margin-right:8px; vertical-align:middle; color:rgb(var(--yellow));"></i>
LinkedIn
</a>
<a class="btn" href="https://docs.google.com/document/d/11wu0_IqU3xA8ZZEiTCQEZ06Hhpuc-iCJmPWvqOqilqU/export?format=pdf">
<i class="ri-file-text-fill"
style="font-size:16px; margin-right:8px; vertical-align:middle; color:rgb(var(--yellow));"></i>
Resume
</a>
</div>
<div class="mini">
<span>CompE @ SDSU, 2028</span>
<span>•</span>
<span>San Diego, CA</span>
</div>
</div>
</div>
</section>
<aside class="projects-panel gravity-rect" aria-label="Featured projects">
<div class="panel-head">
<h2>My Favorite Projects</h2>
</div>
<div class="carousel">
<a href="/hardware#STM32" class="carousel-item">
<img src="/assets/DevBoard.jpg" alt="STM32">
<div class="carousel-caption">
<div class="title">STM32 Development Board & BMS Integration</div>
</div>
</a>
<a href="/garage#YamahaRiva1985" class="carousel-item">
<img src="/assets/Riva85.jpg" alt="YamahaRiva1985">
<div class="carousel-caption">
<div class="title">1985 Yamaha Riva Rebuild</div>
</div>
</a>
<a href="/garage#AcuraTL2004" class="carousel-item">
<img src="/assets/TL04.JPG" alt="AcuraTL2004">
<div class="carousel-caption">
<div class="title">2004 Acura TL</div>
</div>
</a>
<a href="/software#Serika" class="carousel-item">
<img src="/assets/SerikaDark.png" alt="Serika">
<div class="carousel-caption">
<div class="title">Serika Dark Theme</div>
</div>
</a>
</div>
</aside>
</main>
<footer class="footer">
<h3 id="year">Made with Determination • Haniel Mikhaiel, </h3>
</footer>
<script>
document.getElementById("year").textContent += new Date().getFullYear();
</script>
</body>
<script src="/SpaceTime.js"></script>
<div id="navbar"></div>
</html>