-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
329 lines (290 loc) · 10.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Magoi Maxwel - Mechatronic Engineer & XR Developer</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<style>
:root {
--primary-color: #fff;
--secondary-color: #000;
--background-color: #000;
--text-color: #fff;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
html, body {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
overflow-x: hidden;
}
body {
background-color: var(--background-color);
color: var(--secondary-color);
line-height: 1.6;
}
.container {
max-width: 1200px;
margin: 0 auto;
width: 100%;
}
header {
background-color: #000;
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
color: #fff;
width: 100%;
}
header h1 {
font-size: 1.8rem;
font-weight: bold;
}
.header-links {
display: flex;
align-items: center;
gap: 1.5rem;
}
.header-links a {
color: #fff;
text-decoration: none;
font-size: 1rem;
}
.hiring-btn {
background: linear-gradient(45deg, #007bff, #ffffff);
color: #fff;
border: none;
padding: 0.5rem 1rem;
border-radius: 5px;
cursor: pointer;
}
.hero {
height: calc(100vh - 80px); /* Full viewport height minus the header height */
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
text-align: left;
position: relative;
background-image: url('background-image.jpg');
background-size: cover;
background-position: center;
color: #fff;
padding: 2rem;
width: 100%;
overflow: hidden;
}
.hero h1 {
font-size: 4rem;
font-weight: bold;
margin-bottom: 1rem;
}
.hero h2 {
font-size: 2rem;
font-weight: 500;
max-width: 800px;
margin-bottom: 2rem;
line-height: 1.5;
}
.hero p {
font-size: 1.5rem;
color: #fff;
}
.section {
background-color: var(--background-color);
padding: 2rem;
border-radius: 20px;
margin-bottom: 2rem;
color: var(--text-color);
}
.skills-grid, .portfolio-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
}
.skill-card, .portfolio-item {
background-color: #1a1a1a;
border-radius: 15px;
display: flex;
flex-direction: column;
overflow: hidden;
}
.skill-card-image {
width: 100%;
height: 250px;
object-fit: cover;
}
.skill-card-content {
padding: 1.5rem;
display: flex;
flex-direction: column;
flex-grow: 1;
}
.skill-card h4 {
margin-bottom: 0.5rem;
color: #fff;
font-size: 1.2rem;
}
.skill-card p {
flex-grow: 1;
margin-bottom: 1rem;
color: #ccc;
}
.read-more-btn {
background: linear-gradient(45deg, #007bff, #ffffff);
color: #fff;
border: none;
padding: 0.5rem 1rem;
border-radius: 5px;
cursor: pointer;
text-decoration: none;
align-self: flex-start;
margin-top: auto;
}
.contact-links {
display: flex;
justify-content: center;
gap: 2rem;
margin-top: 1.5rem;
}
.contact-link {
color: var(--primary-color);
text-decoration: none;
font-size: 1.2rem;
}
/* Responsive Design */
@media (max-width: 768px) {
.hero {
padding: 1rem;
}
.hero h1 {
font-size: 2.5rem;
}
.hero h2 {
font-size: 1.5rem;
}
.hero p {
font-size: 1rem;
}
.section {
padding: 1rem;
}
}
@media (max-width: 480px) {
header h1 {
font-size: 1.5rem;
}
.hero h1 {
font-size: 2rem;
}
.hero h2 {
font-size: 1.2rem;
}
.hero p {
font-size: 0.9rem;
}
.hiring-btn {
padding: 0.5rem;
font-size: 0.9rem;
}
}
</style>
</head>
<body>
<div class="container">
<!-- Header -->
<header>
<h1>Magoi Maxwel</h1>
<div class="header-links">
<a href="#">Blog</a>
<button class="hiring-btn">Hire Me</button>
</div>
</header>
<!-- Hero Section -->
<section class="hero">
<h1>Magoi Maxwel</h1>
<h2>Specializing in Industrial Automation, IIoT, SCADA Systems, and XR Solutions</h2>
<p>Come and see what I’m currently working on ⟶</p>
</section>
<!-- Professional Summary -->
<section class="section">
<h3>Professional Summary</h3>
<p>I am a passionate engineer and developer with a BSc in Mechatronic Engineering. I specialize in industrial automation, AR/VR solutions, and advanced digital tools for modern manufacturing and industrial training.</p>
</section>
<!-- Core Expertise -->
<section class="section">
<h3>Core Expertise</h3>
<div class="skills-grid">
<div class="skill-card">
<img src="industrial-Automation.jpg" alt="Industrial Automation" class="skill-card-image">
<div class="skill-card-content">
<h4>Industrial Automation</h4>
<p>Proficient in Siemens, Mitsubishi, Schneider, and Allen-Bradley systems.</p>
<a href="#" class="read-more-btn">Read More</a>
</div>
</div>
<div class="skill-card">
<img src="IIOT&SCADA.jpg" alt="IIoT & SCADA Development" class="skill-card-image">
<div class="skill-card-content">
<h4>IIoT & SCADA Development</h4>
<p>Pioneering customizable SCADA systems with minimal configuration.</p>
<a href="#" class="read-more-btn">Read More</a>
</div>
</div>
<div class="skill-card">
<img src="XR.jpg" alt="XR Development" class="skill-card-image">
<div class="skill-card-content">
<h4>XR Development</h4>
<p>Developing VR/AR applications for industrial training using Unity and Blender.</p>
<a href="#" class="read-more-btn">Read More</a>
</div>
</div>
<div class="skill-card">
<img src="Consulations.png" alt="Automotive Innovation" class="skill-card-image">
<div class="skill-card-content">
<h4>Automotive Innovation</h4>
<p>ADAS systems and self-driving capabilities development.</p>
<a href="#" class="read-more-btn">Read More</a>
</div>
</div>
</div>
</section>
<!-- Portfolio Highlights -->
<section class="section">
<h3>Portfolio Highlights</h3>
<div class="portfolio-grid">
<div class="portfolio-item">
<h4>VR Training System</h4>
<p>Immersive virtual reality tool for industrial automation scenarios.</p>
</div>
<div class="portfolio-item">
<h4>ADAS Prototype</h4>
<p>Open-source ADAS system with forward collision warning.</p>
</div>
<div class="portfolio-item">
<h4>SCADA Platform</h4>
<p>Modular SCADA platform for rapid deployment.</p>
</div>
</div>
</section>
<!-- Get in Touch -->
<section class="section">
<h3>Get in Touch</h3>
<div class="contact-links">
<a href="#" class="contact-link"><i class="fas fa-globe"></i> Website</a>
<a href="www.linkedin.com/in/magoimaxwel" class="contact-link"><i class="fab fa-linkedin"></i> LinkedIn</a>
<a href="magoimaxwel@gmail.com" class="contact-link"><i class="fas fa-envelope"></i> Email</a>
<a href="https://github.com/magoimaxwel" class="contact-link"><i class="fab fa-github"></i> GitHub</a>
</div>
</section>
</div>
</body>
</html>