-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (44 loc) · 2.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Adel Kazem - SaaS Developer</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-blue-50">
<header class="text-center p-6 bg-blue-500 text-white">
<h1>Your Name - Full Stack SaaS Developer</h1>
<p>Creating tailored and customized solutions for your business</p>
</header>
<section class="p-6">
<h2 class="text-blue-500">About Me</h2>
<p>I am a full-stack developer specialized in creating websites and applications for businesses. With a background as a registered nurse, I bring a unique perspective to the tech industry. I am proficient in Laravel, Vue.js, TailwindCSS, Bootstrap, HTML, CSS, JavaScript, and API integration, including REST and GraphQL. As the founder of the Provify app on Shopify, I have a proven track record of delivering custom SaaS solutions.</p>
</section>
<section class="p-6">
<h2 class="text-blue-500">Services</h2>
<ul>
<li>Website Development for Businesses</li>
<li>Single Page Application (SPA) Development</li>
<li>Full Stack Development using Laravel and Vue.js</li>
<li>Complex API-based Application Development</li>
<li>Simple One-Page Solutions for Business Owners</li>
</ul>
</section>
<section class="p-6">
<h2 class="text-blue-500">Contact Me</h2>
<p>Email me at: <a href="mailto:[email protected]" class="text-blue-500 underline">[email protected]</a></p>
</section>
<section class="p-6">
<h2 class="text-blue-500">Photo Gallery</h2>
<div class="grid grid-cols-3 gap-4">
<img src="image1.jpg" alt="Gallery Image 1" class="w-full">
<img src="image2.jpg" alt="Gallery Image 2" class="w-full">
<img src="image3.jpg" alt="Gallery Image 3" class="w-full">
</div>
</section>
<footer class="text-center p-6 bg-blue-500 text-white">
© Your Name - Full Stack SaaS Developer
</footer>
</body>
</html>