-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
410 lines (372 loc) · 23.9 KB
/
index.html
File metadata and controls
410 lines (372 loc) · 23.9 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
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
400
401
402
403
404
405
406
407
408
409
410
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mohamed Talibi</title>
<!-- bootstrap css -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous">
<!-- bootstrap icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css">
<!-- font awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css">
<!-- google fonts -->
<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=Comic+Relief:wght@400;700&family=Inconsolata:wght@200..900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Lexend:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Kufi+Arabic:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Rubik:ital,wght@0,300..900;1,300..900&family=TASA+Explorer:wght@400..800&display=swap" rel="stylesheet">
<!-- AOS CSS -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.css" rel="stylesheet">
<!-- custom css -->
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!-- Loader -->
<div class="loader">
<div class="spinner"></div>
</div>
<!-- Main Content -->
<div class="content">
<!-- Enhanced navbar -->
<nav class="navbar navbar-dark navbar-expand-lg fixed-top">
<div class="container-fluid">
<!-- Toggler for md/sm screens -->
<button class="navbar-toggler" type="button" data-bs-toggle="offcanvas" data-bs-target="#offcanvasNavbar" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Navbar links for large screens -->
<div class="collapse navbar-collapse">
<ul class="navbar-nav mx-auto mb-2 mb-lg-0">
<li class="nav-item"><a class="nav-link active" href="">Home</a></li>
<li class="nav-item"><a class="nav-link" href="#skills">Skills</a></li>
<li class="nav-item"><a class="nav-link" href="#about">About</a></li>
<li class="nav-item"><a class="nav-link" href="#projects">Projects</a></li>
<li class="nav-item"><a class="nav-link" href="#contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
<!-- Enhanced Offcanvas for md/sm screens -->
<div class="offcanvas offcanvas-end" tabindex="-1" id="offcanvasNavbar">
<div class="offcanvas-header">
<h5 class="offcanvas-title" id="offcanvasNavbarLabel">Menu</h5>
<button type="button" class="btn-close text-reset" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<ul class="navbar-nav justify-content-center flex-grow-1 pe-3">
<li class="nav-item"><a class="nav-link active" href="">Home</a></li>
<li class="nav-item"><a class="nav-link" href="#skills">Skills</a></li>
<li class="nav-item"><a class="nav-link" href="#about">About</a></li>
<li class="nav-item"><a class="nav-link" href="#projects">Projects</a></li>
<li class="nav-item"><a class="nav-link" href="#contact">Contact</a></li>
</ul>
<div class="mt-4 pt-4 border-top border-secondary">
<h6 class="text-uppercase text-teal-accent mb-3">Connect with me</h6>
<div class="connection-links d-flex justify-content-center gap-3">
<a href="https://github.com/Mouhamed-Talibi" class="text-off-white" target="_blank"><i class="fab fa-github fa-lg fs-2"></i></a>
<a href="https://www.linkedin.com/in/mouhamedtalibi/" class="text-off-white" target="_blank"><i class="fab fa-linkedin fa-lg fs-2"></i></a>
<a href="https://www.instagram.com/mohamed.back.dev/" class="text-off-white" target="_blank"><i class="fab fa-instagram fa-lg fs-2"></i></a>
<a href="mailto:talibi.mohamed.tm@gmail.com" class="text-off-white" target="_blank"><i class="fa-solid fa-envelope fs-2"></i></a>
</div>
</div>
</div>
</div>
<!-- Hero Section -->
<section id="hero" class="hero section">
<div class="container">
<div class="row g-0 align-items-center">
<div class="col-lg-6 hero-content" data-aos="fade-up" data-aos-delay="100">
<div class="content-wrapper">
<h1 class="hero-title">Creative <span class="typed" data-typed-items="Developer, Backend Developer, Laravel Developer, PHP Developer"></span></h1>
<p class="lead">Backend developer specializing in PHP and Laravel. I design and implement systems that are fast, secure, and scalable, turning ideas into functional and reliable digital solutions</p>
<div class="hero-actions" data-aos="fade-up" data-aos-delay="300">
<a href="#projects" class="btn btn-primary">View My Work</a>
<a href="#contact" class="btn btn-outline">Get In Touch</a>
</div>
<div class="social-links" data-aos="fade-up" data-aos-delay="400">
<a href="mailto:talibi.mohamed.tm@gmail.com"><i class="bi bi-envelope fs-4"></i></a>
<a href="https://www.linkedin.com/in/mouhamedtalibi/"><i class="bi bi-linkedin fs-4"></i></a>
<a href="https://github.com/Mouhamed-Talibi"><i class="bi bi-github fs-4"></i></a>
<a href="https://www.instagram.com/mohamed.back.dev/"><i class="bi bi-instagram fs-4"></i></a>
</div>
</div>
</div>
<div class="col-lg-6 hero-image" data-aos="fade-down" data-aos-delay="200">
<div class="image-container">
<div class="floating-elements d-none d-lg-block">
<div class="floating-card card-1" data-aos="zoom-in" data-aos-delay="300">
<i class="bi bi-palette"></i>
<span>PHP Developer</span>
</div>
<div class="floating-card card-2" data-aos="zoom-in" data-aos-delay="400">
<i class="bi bi-code-slash"></i>
<span>Development</span>
</div>
<div class="floating-card card-3" data-aos="zoom-in" data-aos-delay="500">
<i class="bi bi-lightning"></i>
<span>Databases</span>
</div>
</div>
<img src="imgs/updated-image.jpg" alt="Portfolio Hero" class="img-fluid hero-main-image">
<div class="image-overlay"></div>
</div>
</div>
</div>
</div>
</section><!-- /Hero Section -->
<!-- Skills -->
<section id="skills" class="skills mt-5">
<div class="container" data-aos="fade-up">
<div class="main-title text-center" data-aos="zoom-in" data-aos-delay="100">
<h1>Skills</h1>
<p class="text-white-50">Showcasing my capabilities across technologies</p>
</div>
<div class="row g-4 mt-5 skills-row justify-content-center">
<!-- Frontend Skills -->
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="200">
<div class="skill-card rounded-3">
<h3 class="skill-category">Frontend</h3>
<div class="skill-icons">
<div class="skill-item" data-aos="zoom-in" data-aos-delay="300">
<i class="fab fa-html5"></i>
<p>HTML</p>
</div>
<div class="skill-item" data-aos="zoom-in" data-aos-delay="400">
<i class="fab fa-css3-alt"></i>
<p>CSS</p>
</div>
<div class="skill-item" data-aos="zoom-in" data-aos-delay="500">
<i class="fab fa-bootstrap"></i>
<p>Bootstrap</p>
</div>
</div>
</div>
</div>
<!-- Backend Skills -->
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="200">
<div class="skill-card rounded-3">
<h3 class="skill-category">Backend</h3>
<div class="skill-icons">
<div class="skill-item" data-aos="zoom-in" data-aos-delay="300">
<i class="fab fa-php"></i>
<p>PHP</p>
</div>
<div class="skill-item" data-aos="zoom-in" data-aos-delay="400">
<i class="fab fa-laravel"></i>
<p>Laravel</p>
</div>
<div class="skill-item" data-aos="zoom-in" data-aos-delay="500">
<i class="fas fa-database"></i>
<p>MySQL</p>
</div>
<div class="skill-item" data-aos="zoom-in" data-aos-delay="600">
<i class="fas fa-server"></i>
<p>APIs</p>
</div>
</div>
</div>
</div>
<!-- Tools & Others -->
<div class="col-lg-4 col-md-6" data-aos="fade-down" data-aos-delay="200">
<div class="skill-card rounded-3">
<h3 class="skill-category">Tools & Others</h3>
<div class="skill-icons">
<div class="skill-item" data-aos="zoom-in" data-aos-delay="300">
<i class="fab fa-git-alt"></i>
<p>Git</p>
</div>
<div class="skill-item" data-aos="zoom-in" data-aos-delay="400">
<i class="fab fa-github"></i>
<p>GitHub</p>
</div>
<div class="skill-item" data-aos="zoom-in" data-aos-delay="500">
<i class="fas fa-terminal"></i>
<p>Terminal</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="about">
<div class="decorative-element element-1" data-aos="fade-down" data-aos-delay="100"></div>
<div class="decorative-element element-2" data-aos="fade-up" data-aos-delay="200"></div>
<div class="container-fluid" data-aos="fade-up">
<div class="main-title text-center" data-aos="zoom-in" data-aos-delay="100">
<h1>About <span>Me</span></h1>
</div>
<div class="portfolio-container">
<div class="about-content">
<!-- Image -->
<div class="about-image-container" data-aos="fade-up" data-aos-delay="200">
<div class="image">
<img src="imgs/my_image-1.jpg" alt="Mohamed Talibi" class="img-fluid">
</div>
</div>
<!-- Text -->
<div class="about-text" data-aos="fade-down" data-aos-delay="300">
<h3>A PHP & LARAVEL Developer</h3>
<p class="main">
Hello, I'm <span>Mohamed Talibi</span>, a 20-year-old backend developer from Morocco. Passionate about
programming and technology, I build efficient, scalable backend systems while continuously
learning and staying up-to-date with the latest tools and industry trends.
</p>
<div class="social-links" data-aos="fade-up" data-aos-delay="400">
<a href="mailto:talibi.mohamed.tm@gmail.com"><i class="bi bi-envelope fs-4"></i></a>
<a href="https://www.linkedin.com/in/mouhamedtalibi/"><i class="bi bi-linkedin fs-4"></i></a>
<a href="https://github.com/Mouhamed-Talibi"><i class="bi bi-github fs-4"></i></a>
<a href="https://www.instagram.com/mohamed.back.dev/"><i class="bi bi-instagram fs-4"></i></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="projects">
<div class="decorative-circle circle-1" data-aos="fade-down"></div>
<div class="decorative-circle circle-2" data-aos="fade-up"></div>
<div class="container">
<div class="main-title text-center" data-aos="fade-up" data-aos-delay="100">
<h1>Projects</h1>
<p>Explore my professional projects showcasing innovation and creativity</p>
</div>
<!-- Project 1 -->
<div class="project-card d-flex flex-wrap" data-aos="fade-up" data-aos-delay="200">
<div class="project-image">
<img src="imgs/projects/yourRestaurant/6.png" alt="Restaurant Management System" class="img-fluid rounded shadow">
</div>
<div class="project-description" data-aos="fade-down" data-aos-delay="300">
<div class="project-title">
<h3>Restaurant Management System</h3>
</div>
<div class="project-idea">
<p>
It provides a seamless experience for customers to create accounts, explore the menu,
and order food while offering powerful admin management features.
</p>
</div>
<div class="project-tech">
<span>PHP</span>
<span>MySQL</span>
<span>CSS</span>
<span>JS</span>
<span>Bootstrap</span>
</div>
<div class="project-links">
<a href="https://github.com/Mouhamed-Talibi/Restaurant-mashawi" class="btn-github" target="_blank">
<i class="bi bi-github"></i>
</a>
</div>
</div>
</div>
<!-- Project 2 -->
<div class="project-card d-flex flex-wrap" data-aos="fade-down" data-aos-delay="400">
<div class="project-image d-block d-lg-none">
<img src="imgs/projects/PostForge/9.png" alt="Content Management Platform" class="img-fluid rounded shadow">
</div>
<div class="project-description" data-aos="fade-up" data-aos-delay="500">
<div class="project-title">
<h3>Content Management Platform</h3>
</div>
<div class="project-idea">
<p>
A Laravel-based content platform with role-based access (Guest, Creator, Admin),
featuring post moderation, category management, interactive comments, secure
authentication, optimized database design, and an admin dashboard.
</p>
</div>
<div class="project-tech">
<span>LARAVEL</span>
<span>PHP</span>
<span>MySQL</span>
<span>CSS</span>
<span>JS</span>
<span>Bootstrap</span>
</div>
<div class="project-links">
<a href="https://github.com/Mouhamed-Talibi/PostForge" class="btn-github" target="_blank">
<i class="bi bi-github"></i>
</a>
</div>
</div>
<div class="project-image d-none d-lg-block">
<img src="imgs/projects/PostForge/9.png" alt="Content Management Platform" class="img-fluid rounded shadow">
</div>
</div>
<!-- Project 3 -->
<div class="project-card d-flex flex-wrap" data-aos="fade-up" data-aos-delay="600">
<div class="project-image">
<img src="imgs/projects/picksouk/picksouk.png" alt="Ecommerce Website" class="img-fluid rounded shadow">
</div>
<div class="project-description" data-aos="fade-down" data-aos-delay="700">
<div class="project-title">
<h3>Ecommerce Website</h3>
</div>
<div class="project-idea">
<p>
dynamic e-commerce platform designed to offer a seamless online shopping experience. Catering to a
diverse range of customers, it provides a wide array of products across various categories, ensuring
that shoppers can find exactly what they need with ease.
</p>
</div>
<div class="project-tech">
<span>LARAVEL</span>
<span>PHP</span>
<span>MySQL</span>
<span>CSS</span>
<span>JS</span>
<span>Bootstrap</span>
</div>
<div class="project-links">
<a href="https://picksouk.com/" class="btn-github" target="_blank">
<i class="bi bi-box-arrow-up-right"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="contact mt-5">
<div class="shape-1" data-aos="fade-up"></div>
<div class="shape-2" data-aos="fade-down"></div>
<div class="shape-3" data-aos="fade-down"></div>
<div class="shape-4" data-aos="fade-up"></div>
<div class="shape-5" data-aos="zoom-in"></div>
<div class="container">
<div class="text-center py-5" data-aos="fade-up" data-aos-delay="200">
<h1 class="display-4">Do you have a project idea?</h1>
<h1 class="second-head">Let's discuss your project!</h1>
<p class="mt-4 mx-auto">
I'm always open to discussing new projects and creative ideas. Let's connect and build something amazing together.
</p>
<div class="contact-link mt-4" data-aos="zoom-in" data-aos-delay="400">
<a href="mailto:talibi.mohamed.tm@gmail.com">
Let's work together
<i class="fas fa-arrow-right"></i>
</a>
</div>
</div>
</div>
</section>
</div>
<!-- bootstrap js -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js" integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI" crossorigin="anonymous"></script>
<!-- loader js -->
<script src="js/loader.js"></script>
<!-- typed.js -->
<script src="https://cdn.jsdelivr.net/npm/typed.js@2.0.12"></script>
<script src="js/typed.js"></script>
<!-- AOS JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.js"></script>
<script>
AOS.init({
duration: 1000,
easing: 'ease-in-out',
once: false,
});
</script>
</body>
</html>