-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
399 lines (393 loc) · 19.3 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
<!DOCTYPE html>
<html class="scroll-smooth">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="p:domain_verify" content="df42adab2775ea0b167c84fd771f4a77"/>
<!-- Flowbite CDN -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.2.1/flowbite.min.css" rel="stylesheet" />
<!-- Tailwind Play CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Favicon link -->
<link rel="icon" href="favicon-16x16.png">
<!-- Font awesome link -->
<script
src="https://kit.fontawesome.com/5a1d47c6c2.js"
crossorigin="anonymous"
></script>
<!-- Jquery Link -->
<script
src="https://code.jquery.com/jquery-3.7.0.min.js"
integrity="sha256-2Pmvv0kuTBOenSvLm6bvfBSSHrUJ+3A7x6P5Ebd07/g="
crossorigin="anonymous"
></script>
<title>Dev~Hero | Frontend Developer</title>
</head>
<body id="home">
<!-- Header Section -->
<header class="sticky top-0 z-10 inset-x-0 inset-y-0">
<nav class="bg-gray-800 relative">
<div class="mx-auto max-w-7xl px-2 sm:px-6 lg:px-8">
<div class="relative flex flex-row h-16 items-center justify-between">
<div class="absolute inset-y-0 left-0 flex items-center sm:hidden">
<!-- Mobile menu button-->
<button id="hamburger"
type="button"
class="relative inline-flex items-center justify-center rounded-md p-2 text-gray-400 hover:bg-gray-700 hover:text-white focus:outline-none focus:ring-2 focus:ring-inset focus:ring-white"
aria-controls="mobile-menu"
aria-expanded="false"
>
<span class="absolute -inset-0.5"></span>
<span class="sr-only">Open main menu</span>
<!--
Icon when menu is closed.
Menu open: "hidden", Menu closed: "block"
-->
<svg id="opened"
class="block h-6 w-6"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
aria-hidden="true"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5"
/>
</svg>
<!--
Icon when menu is open.
Menu open: "block", Menu closed: "hidden"
-->
<svg id="closed"
class="hidden h-6 w-6"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
aria-hidden="true"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M6 18L18 6M6 6l12 12"
/>
</svg>
</button>
</div>
<div
class="flex flex-1 items-center justify-center sm:items-stretch sm:justify-between"
>
<div class="flex flex-shrink-0 items-center">
<h2
class="bg-gray-900 text-white rounded-md px-3 py-2 text-sm font-medium"
>
<a href="#" class="font-mono"
><i class="fa-solid fa-code"> Dev~Hero</i></a
>
</h2>
</div>
<div class="hidden sm:ml-6 sm:block">
<div class="flex space-x-4">
<a
href="#home"
class="text-white hover:bg-gray-700 rounded-md px-3 py-2 text-sm font-medium"
aria-current="page"
>Home</a
>
<a
href="#about"
class="text-gray-300 hover:bg-gray-700 hover:text-white rounded-md px-3 py-2 text-sm font-medium"
>About</a
>
<a
href="#projects"
class="text-gray-300 hover:bg-gray-700 hover:text-white rounded-md px-3 py-2 text-sm font-medium"
>Projects</a
>
<a
href="#testimonials"
class="text-gray-300 hover:bg-gray-700 hover:text-white rounded-md px-3 py-2 text-sm font-medium"
>Testimonials</a
>
<a
href="#contact"
class="bg-light hover:bg-gray-700 hover:text-white rounded-md px-3 py-2 text-sm font-medium"
>Contact Me</a
>
</div>
</div>
</div>
</div>
</div>
<!-- Mobile menu, show/hide based on menu state. -->
<div class="main absolute -top-[250px] bg-[#141E27] opacity-70 inset-x-0 transform duration-1000" id="mobile_menu">
<div class="space-y-1 px-2 pb-3 pt-2">
<!-- Current: "bg-gray-900 text-white", Default: "text-gray-300 hover:bg-gray-700 hover:text-white" -->
<a
href="#home"
class="bg-gray-900 text-white block rounded-md px-3 py-2 text-base font-medium"
aria-current="page"
>Home</a
>
<a
href="#about"
class="text-gray-300 hover:bg-gray-700 hover:text-white block rounded-md px-3 py-2 text-base font-medium"
>About</a
>
<a
href="#projects"
class="text-gray-300 hover:bg-gray-700 hover:text-white block rounded-md px-3 py-2 text-base font-medium"
>Projects</a
>
<a
href="#testimonials"
class="text-gray-300 hover:bg-gray-700 hover:text-white block rounded-md px-3 py-2 text-base font-medium"
>Testimonials</a
>
<a
href="#contact"
class="text-gray-300 hover:bg-gray-700 hover:text-white block rounded-md px-3 py-2 text-base font-medium"
>Contact Me</a
>
</div>
</div>
</nav>
</header>
<!-- Hero Section -->
<section id="home">
<div class="relative isolate px-6 pt-4 lg:px-8">
<div
class="w-full mx-auto flex flex-col-reverse md:flex-row gap-6 md:px-12 py-4 sm:py-14 lg:py-20"
>
<div class="text-center md:text-left max-w-3xl">
<h1
class="text-4xl font-bold tracking-tight text-gray-900 sm:text-6xl"
>
I'm a Frontend Developer, Building the Future through Code...
</h1>
<p class="mt-6 text-lg leading-8 text-gray-600">
Possessing strong problem-solving and analytical skills, I thrive in dynamic and challenging environments, adapting strategies to meet evolving project needs
</p>
<div
class="mt-10 flex flex-col md:flex-row items-center justify-center md:justify-start gap-x-6"
>
<a
href="mailto:yusnaj21@gmail.com"
class="rounded-md bg-dark px-3.5 py-2.5 text-md font-semibold text-white shadow-sm hover:bg-primary focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary my-3 md:my-0"
><i class="fa-solid fa-user-plus"></i> Hire me</a
>
<a
href="https://docs.google.com/document/d/1ANd9CbHTGx_j80LOqMBw2vp8oYi9kAEJHfIpeMIRevY/edit?usp=sharing" target="_blank"
class="rounded-md bg-dark px-3.5 py-2.5 text-md font-semibold text-white shadow-sm hover:bg-primary focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-dark my-3 md:my-0"
><i class="fa-regular fa-file-pdf"></i> Download resume</a
>
</div>
</div>
<div class="">
<img
src="images/headShot.png"
alt="Yusuf Muhammad Najeeb's profile"
class="w-full rounded-full"
/>
</div>
</div>
</div>
</section>
<!-- About Me Section -->
<section id="about" class="bg-secondary">
<div class="relative isolate px-6 pt-14 lg:px-8 text-center md:text-left">
<div class="w-full md:px-12 py-4 sm:py-14 lg:py-20">
<button class="bg-dark rounded-full text-light py-2 px-4 my-3">
<i class="fa-solid fa-wand-magic-sparkles"></i> About Me
</button>
<p
class="my-4 bg-primary py-4 px-3 text-light text-center text-2xl md:w-6/12 lg:w-5/12 md:text-left"
>
Hi! I'm Muhammad Najeeb 👋...
</p>
<p class="w-full md:w-[70%] text-dark text-[1.2rem] text-center md:text-left">
I'm Frontend Developer, passionate about leveraging technology to
create meaningful solutions. With hands-on experience in HTML, CSS,
and JavaScript, I thrive in building engaging web applications that
enhance user experiences and Seeking new opportunities to create
impactful digital products.
</p>
</div>
<div class="relative isolate px-6 md:px-12 pb-12 text-center md:text-left">
<button class="bg-dark rounded-full text-light py-2 px-4 my-3">
<i class="fa-solid fa-fill-drip"></i> Skills
</button>
<ul
class="flex flex-wrap justify-center items-center space-x-3 text-[1.2rem] text-primary md:justify-start md:space-x-5 h-full py-3 md:py-10"
>
<li class="flex-1 h-[50%]"><img class="w-full" src="images/html.png" alt="HTML logo"></li>
<li class="flex-1 h-[50%]"><img class="w-full" src="images/css.webp" alt="CSS logo"></li>
<li class="flex-1 h-[50%]"><img class="w-full" src="images/javascript.png" alt="javascript logo"></li>
<li class="flex-1 h-[50%]"><img class="w-full" src="images/taillwind.png" alt=""></li>
<li class="flex-1 h-[50%]"><img class="w-full" src="images/git.png" alt="Git logo"></li>
<li class="flex-1 h-[50%]"><img class="w-full" src="images/MUI.png" alt="Git logo"></li>
<li class="flex-1 h-[50%]"><img class="w-full" src="images/github.png" alt="github logo"></li>
<li class="flex-1 h-[50%]"><img class="w-full" src="images/react.png" alt="github logo"></li>
</ul>
</div>
</div>
</section>
<!-- Project Section -->
<section id="projects" class="bg-primary">
<div class="relative isolate px-6 py-14 lg:px-8 text-center md:text-left">
<div class="px-8 md:px-12">
<button class="bg-secondary rounded-full text-dark py-2 px-4 my-5">
<i class="fa-solid fa-computer"></i> Projects
</button>
<div class="flex flex-col md:flex-row md:gap-10 lg:gap-20">
<div class="relative my-8 md:my-14">
<div class="">
<img src="images/jarah.jpeg" alt="" class="w-full rounded-[1rem]" />
</div>
<div
class="flex flex-col text-center justify-end gap-6 text-dark font-bold bg-gradient-to-b from-transparent to-primary absolute bottom-0 right-0 left-0 h-[80%] pb-5 px-8 md:w-[100%]"
>
<!-- <div class="hidden md:inline-block mt-4 flex items-center justify-center space-x-3 text-base">
<div class="font-semibold text-white">12 July, 23</div>
<svg viewBox="0 0 2 2" width="3" height="3" aria-hidden="true" class="fill-gray-900">
<circle cx="1" cy="1" r="1" />
</svg>
<div class="text-white">Muhammad Najeeb</div>
</div> -->
<p class="font-mono text-2xl text-light">
Financial Institute
</p>
<a
href="https://jarah-jeebulla.vercel.app/"
target="_blank"
class="bg-dark w-full mx-auto text-1xl text-light py-2 px-4"
>Visit website</a
>
</div>
</div>
<!-- Second -->
<div class="relative my-8 md:my-14">
<div class="">
<img src="images/trafal.jpeg" alt="" class="w-full rounded-[1rem]" />
</div>
<div
class="flex flex-col text-center justify-end gap-6 text-dark font-bold bg-gradient-to-b from-transparent to-primary absolute bottom-0 right-0 left-0 h-[80%] pb-5 px-8 md:w-[100%]"
>
<!-- <div class="hidden md:inline-block mt-4 flex items-center justify-center space-x-3 text-base">
<div class="font-semibold text-white">17 February, 23</div>
<svg viewBox="0 0 2 2" width="3" height="3" aria-hidden="true" class="fill-gray-900">
<circle cx="1" cy="1" r="1" />
</svg>
<div class="text-white">Muhammad Najeeb</div>
</div> -->
<p class="font-mono text-2xl text-light">
AI Mobile Clinic
</p>
<a
href="https://helumai.onrender.com/"
target="_blank"
class="bg-dark w-full mx-auto text-1xl text-light py-2 px-4"
>Visit website</a
>
</div>
</div>
<!-- Third -->
<div class="relative my-8 md:my-14">
<div class="">
<img src="images/mercurius.png" alt="E-Commerce website" class="w-full rounded-[1rem]" />
</div>
<div
class="flex flex-col text-center justify-end gap-6 text-dark font-bold bg-gradient-to-b from-transparent to-primary absolute bottom-0 right-0 left-0 h-[80%] pb-5 px-8 md:w-[100%]"
>
<p class="font-mono text-2xl text-light">
E-Commerce website
</p>
<a
href="https://mercurius-fronted.vercel.app/"
target="_blank"
class="bg-dark w-full mx-auto text-1xl text-light py-2 px-4"
>Visit website</a
>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonial Section -->
<section id="testimonials">
<div class="relative isolate overflow-hidden bg-white px-6 py-24 sm:py-32 md:px-12">
<h3 class="text-center text-3xl font-bold">What our Customers are saying.</h3>
<figure class="mt-10">
<blockquote class="text-center text-xl font-semibold leading-8 text-gray-900 sm:text-2xl sm:leading-9">
<p>“From the moment I landed on the homepage, I was impressed by the modern and intuitive design. The user-friendly interface made navigation a breeze, and I found everything I needed right at my fingertips. The attention to detail in crafting a seamless user journey truly sets your work apart.”</p>
</blockquote>
<figcaption class="mt-10">
<img class="mx-auto h-10 w-10 rounded-full" src="images/img7.jpeg" alt="User profile picture">
<div class="mt-4 flex items-center justify-center space-x-3 text-base">
<div class="font-semibold text-gray-900">Abdullahi Jarah Pt.</div>
<svg viewBox="0 0 2 2" width="3" height="3" aria-hidden="true" class="fill-gray-900">
<circle cx="1" cy="1" r="1" />
</svg>
<div class="text-gray-600">CEO, JaraPetel Fin. Ins</div>
</div>
</figcaption>
</figure>
</div>
</div>
</section>
<!-- Footer Section -->
<section id="contact" class="bg-dark">
<div class="relative isolate overflow-hidden py-5 text-center md:text-left">
<div class="flex flex-col md:flex-col text-light">
<!-- <div class="flex flex-col md:flex-row justify-between items-center gap-6 px-6 lg:px-8">
<div class="mt-6 text-lg leading-8 text-light">
<p class="text-[1rem] leading-6">Phone: +(234)-810-547-5021</p>
<p class="text-[1rem] leading-6">Address: Abuja, Nigeria.</p>
<p class="text-[1rem] leading-6">Email: yusnaj21@gmail.com</p>
</div>
<div class="mt-6 text-lg leading-8 text-light">
<p class="font-bold">Subscribe to my Newsletter</p>
<p class="w-full lg:w-[80%] leading-5"> To get the latest news, articles, and resources, sent to your inbox weekly.</p>
<form>
<input class="outline-none rounded-md border p-[0.5rem] -mr-3 my-2 text-dark" type="text" name="mail" id="mail" placeholder="Enter your email address">
<button class="bg-primary text-light p-[0.32rem] rounded-r-xl ">Subscribe</button>
</form>
</div>
</div> -->
<div class="w-full border my-4"></div>
<div class="flex flex-col-reverse md:flex-row justify-between items-center px-6 lg:px-8 md:w-[72%]">
<div class="">
<p>© 2023 Dev~Hero, Inc. All rights reserved.</p>
</div>
<div class="space-x-4 text-2xl">
<a class="hover:text-primary" target="_blank" href="https://twitter.com/_jeebullah?s=11"><i class="fa-brands fa-twitter"></i></a>
<a class="hover:text-primary" target="_blank" href="https://github.com/jeebulla"><i class="fa-brands fa-github"></i></a>
<a class="hover:text-primary" target="_blank" href="https://www.linkedin.com/in/najeeb-yusuf-muhammad"><i class="fa-brands fa-linkedin"></i></a>
<a class="hover:text-primary" target="_blank" href="https://instagram.com/jeebulla?igshid=NTc4MTIwNjQ2YQ=="><i class="fa-brands fa-instagram"></i></a>
</div>
</div>
</div>
</div>
</section>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: "#203239",
secondary: "#E0DDAA",
dark: "#141E27",
light: "#EEEDDE",
},
},
},
};
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.2.1/flowbite.min.js"></script>
<script src="main.js"></script>
</body>
</html>