-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
341 lines (329 loc) · 16.3 KB
/
index.html
File metadata and controls
341 lines (329 loc) · 16.3 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PORTFOLIO</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="particles-js"></div>
<header>
<a href="#" class="logo">Lawrence</a>
<div class="header-controls">
<button class="theme-toggle" aria-label="Toggle theme">
<i class="fas fa-moon"></i>
</button>
<div class="hamburger">
<span></span>
<span></span>
<span></span>
</div>
</div>
<nav>
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#portfolio">Portfolio</a>
<a href="#experience">Experience</a>
<a href="#contact" class="btn">Get In Touch</a>
</nav>
</header>
<section class="home" id="home">
<div class="home-img">
<img src="/tools/ironman.jpg" alt="Lawrence's profile photo">
</div>
<div class="home-content">
<h1>Hi, It's <span>Lawrence</span></h1>
<h3 class="typing-text">I'm a <span></span></h3>
<p>Passionate Full Stack Developer with expertise in modern web technologies. I create exceptional digital experiences that combine beautiful design with powerful functionality.</p>
<div class="social-icons">
<a href="#" aria-label="LinkedIn"><i class="fab fa-linkedin-in"></i></a>
<a href="https://github.com/luhrhenz" aria-label="GitHub"><i class="fab fa-github"></i></a>
<a href="https://twitter.com/luhrhenz" aria-label="Twitter"><i class="fab fa-twitter"></i></a>
<a href="#" aria-label="Instagram"><i class="fab fa-instagram"></i></a>
</div>
</div>
</section>
<section class="about" id="about">
<div class="container">
<div class="about-content">
<div class="section-header">
<h2>About Me</h2>
<p>Get to know more about my journey</p>
</div>
<div class="about-grid">
<div class="about-text">
<h3>Passionate Developer & Designer</h3>
<p>I'm a dedicated full stack developer with a passion for creating innovative web solutions. With years of experience in modern technologies, I bring ideas to life through code.</p>
<p>When I'm not coding, you'll find me exploring new technologies, contributing to open source projects, or sharing knowledge with the developer community.</p>
<div class="about-actions">
<a href="#portfolio" class="btn secondary">View My Work</a>
<a href="/tools/ironman.jpg" download="Lawrence_Resume.pdf" class="btn outline">
<i class="fas fa-download"></i>
Download CV
</a>
</div>
</div>
<div class="skills-stats">
<div class="stat-item">
<div class="stat-number">50+</div>
<div class="stat-label">Projects Completed</div>
</div>
<div class="stat-item">
<div class="stat-number">3+</div>
<div class="stat-label">Years Experience</div>
</div>
<div class="stat-item">
<div class="stat-number">20+</div>
<div class="stat-label">Happy Clients</div>
</div>
</div>
</div>
</div>
<!-- Skills Section -->
<div class="skills-section">
<h3>My Tech Stack</h3>
<div class="skills-container">
<div class="skill-item">
<div class="skill-header">
<i class="fab fa-react"></i>
<span>React</span>
</div>
<div class="skill-progress">
<div class="progress-bar" style="--progress: 95%"></div>
</div>
<span class="skill-percentage">95%</span>
</div>
<div class="skill-item">
<div class="skill-header">
<i class="fab fa-react"></i>
<span>React Native</span>
</div>
<div class="skill-progress">
<div class="progress-bar" style="--progress: 90%"></div>
</div>
<span class="skill-percentage">90%</span>
</div>
<div class="skill-item">
<div class="skill-header">
<i class="fab fa-js-square"></i>
<span>TypeScript</span>
</div>
<div class="skill-progress">
<div class="progress-bar" style="--progress: 88%"></div>
</div>
<span class="skill-percentage">88%</span>
</div>
<div class="skill-item">
<div class="skill-header">
<i class="fab fa-node-js"></i>
<span>Node.js</span>
</div>
<div class="skill-progress">
<div class="progress-bar" style="--progress: 60%"></div>
</div>
<span class="skill-percentage">60%</span>
</div>
<div class="skill-item">
<div class="skill-header">
<i class="fas fa-database"></i>
<span>MongoDB</span>
</div>
<div class="skill-progress">
<div class="progress-bar" style="--progress: 85%"></div>
</div>
<span class="skill-percentage">85%</span>
</div>
<div class="skill-item">
<div class="skill-header">
<i class="fab fa-css3-alt"></i>
<span>Tailwind CSS</span>
</div>
<div class="skill-progress">
<div class="progress-bar" style="--progress: 93%"></div>
</div>
<span class="skill-percentage">93%</span>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="portfolio" id="portfolio">
<div class="container">
<div class="section-header">
<h2>My Portfolio</h2>
<p>Showcasing my latest work and projects</p>
</div>
<div class="portfolio-filters">
<button class="filter-btn active" data-filter="all">All</button>
<button class="filter-btn" data-filter="web">Web Development</button>
<button class="filter-btn" data-filter="app">App Development</button>
<button class="filter-btn" data-filter="design">Design</button>
</div>
<div class="portfolio-grid">
<div class="portfolio-item" data-category="web">
<div class="portfolio-image">
<img src="/tools/mamchisom.jpeg" alt="E-Commerce Platform">
<div class="portfolio-overlay">
<a href="https://mamachisombeddings.netlify.app" class="portfolio-link"><i class="fas fa-external-link-alt"></i></a>
<a href="https://github.com/luhrhenz/bedding-store" class="portfolio-github"><i class="fab fa-github"></i></a>
</div>
</div>
<div class="portfolio-info">
<h3>E-Commerce Platform</h3>
<p>Modern online shopping experience with React & Node.js</p>
<div class="portfolio-tech">
<span>React</span>
<span>Node.js</span>
<span>MongoDB</span>
</div>
</div>
</div>
<div class="portfolio-item" data-category="app">
<div class="portfolio-image">
<img src="/tools/ironman.jpg" alt="Task Management App">
<div class="portfolio-overlay">
<a href="#" class="portfolio-link"><i class="fas fa-external-link-alt"></i></a>
<a href="#" class="portfolio-github"><i class="fab fa-github"></i></a>
</div>
</div>
<div class="portfolio-info">
<h3>Task Management App</h3>
<p>Productivity app built with React Native</p>
<div class="portfolio-tech">
<span>React Native</span>
<span>TypeScript</span>
</div>
</div>
</div>
<div class="portfolio-item" data-category="design">
<div class="portfolio-image">
<img src="/tools/ironman.jpg" alt="Brand Identity Design">
<div class="portfolio-overlay">
<a href="#" class="portfolio-link"><i class="fas fa-external-link-alt"></i></a>
</div>
</div>
<div class="portfolio-info">
<h3>Brand Identity Design</h3>
<p>Complete brand identity for a tech startup</p>
<div class="portfolio-tech">
<span>Figma</span>
<span>Photoshop</span>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="experience" id="experience">
<div class="container">
<div class="section-header">
<h2>Experience</h2>
<p>My professional journey <br>— a story of growth, learning, and impactful contributions in tech.</p>
</div>
<div class="timeline">
<div class="timeline-item">
<div class="timeline-marker"></div>
<div class="timeline-content">
<h3>Well Seasoned Full Stack Developer</h3>
<h4>Your Employee.</h4>
<span class="timeline-date">2022 - Present</span>
<p>Worked on development of web applications using React, Node.js, and cloud technologies. Mentored upcoming developers and improved team productivity by 40%.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-marker"></div>
<div class="timeline-content">
<h3>Frontend Developer</h3>
<h4>Thebuidl.</h4>
<span class="timeline-date">2020 - 2022</span>
<p>Developed responsive web applications and improved user experience across multiple projects. Collaborated with design team to implement pixel-perfect interfaces.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-marker"></div>
<div class="timeline-content">
<h3>Junior Web Developer</h3>
<h4>Thebuidl.</h4>
<span class="timeline-date">2019 - 2020</span>
<p>Built foundational web development skills while working on various client projects. Gained experience in HTML, CSS, JavaScript, and TypeScript.</p>
</div>
</div>
</div>
</div>
</section>
<section class="contact" id="contact">
<div class="container">
<div class="section-header">
<h2>Get In Touch</h2>
<p>Let's discuss your next project</p>
</div>
<div class="contact-grid">
<div class="contact-info">
<h3>Let's work together</h3>
<p>I'm always interested in new opportunities and exciting projects. Whether you have a specific project in mind or just want to explore possibilities, I'd love to hear from you.</p>
<div class="contact-details">
<div class="contact-item">
<i class="fas fa-envelope"></i>
<span>lawrencesunday311@gmail.com</span>
</div>
<div class="contact-item">
<i class="fas fa-phone"></i>
<span>+234 706 816 5116, +234 901 177 0996</span>
</div>
<div class="contact-item">
<i class="fas fa-map-marker-alt"></i>
<span>Kaduna, Nigeria</span>
</div>
</div>
</div>
<form class="contact-form" action="https://formspree.io/f/meorkwkj" method="POST">
<div class="form-group">
<input type="text" name="name" placeholder="Your Name" required>
</div>
<div class="form-group">
<input type="email" name="email" placeholder="Your Email" required>
</div>
<div class="form-group">
<input type="text" name="subject" placeholder="Subject">
</div>
<div class="form-group">
<textarea name="message" placeholder="Your Message" rows="5" required></textarea>
</div>
<button type="submit" class="btn-nth">Send Message</button>
</form>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-brand">
<h3>Lawrence</h3>
<p>Full Stack Developer & UI/UX Designer</p>
</div>
<div class="footer-links">
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#portfolio">Portfolio</a>
<a href="#contact">Contact</a>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 Lawrence. All rights reserved.</p>
<div class="footer-social">
<a href="#" aria-label="LinkedIn"><i class="fab fa-linkedin-in"></i></a>
<a href="#" aria-label="GitHub"><i class="fab fa-github"></i></a>
<a href="#" aria-label="Twitter"><i class="fab fa-twitter"></i></a>
<a href="#" aria-label="Instagram"><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="/script.js"></script>
</body>
</html>