-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
138 lines (123 loc) · 5.06 KB
/
index.html
File metadata and controls
138 lines (123 loc) · 5.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hamad Rashid | Backend Laravel Developer</title>
<meta name="description" content="Backend Laravel Developer specializing in scalable web applications, APIs, payments, and performance optimization.">
<link rel="stylesheet" href="style.css">
</head>
<body>
<button class="theme-toggle" id="themeToggle">
🌙 Dark
</button>
<header class="header">
<div class="header-left">
<h1>Hamad Rashid</h1>
<p class="subtitle">Backend Laravel Developer</p>
<p class="tagline">
Building scalable, secure, and high-performance web applications & APIs
</p>
<div class="links">
<a href="https://www.linkedin.com/in/hamadrashid007" target="_blank">LinkedIn</a>
<a href="https://github.com/Hamad-Rashid" target="_blank">GitHub</a>
<a href="mailto:chhamad444@gmail.com">Email</a>
</div>
</div>
<div class="header-right">
<img src="avatar.jpg" alt="Hamad Rashid" class="avatar">
</div>
</header>
<section>
<h2>About Me</h2>
<p>
I am a dedicated <strong>Backend Laravel Developer</strong> with professional experience in building
robust, scalable, and secure web applications. I specialize in the
<strong>Laravel framework</strong>, writing clean, maintainable, and production-ready
code following <strong>PSR-12</strong> and <strong>SOLID principles</strong>.
</p>
<p>
My expertise includes authentication systems, subscription-based platforms,
payment gateway integrations (Stripe & PayPal), database design,
caching, and performance optimization. I focus on reliability,
long-term maintainability, and delivering backend systems that scale with business growth.
</p>
</section>
<section>
<h2>Core Skills</h2>
<ul>
<li><strong>Backend Development:</strong> Laravel, PHP, Livewire</li>
<li><strong>API Development:</strong> RESTful APIs, Third-party Integrations</li>
<li><strong>Payments & Subscriptions:</strong> Stripe, PayPal</li>
<li><strong>Database:</strong> MySQL, Query Optimization, Caching</li>
<li><strong>Server & Deployment:</strong> Nginx, Supervisor, PHP-FPM, Linux</li>
<li><strong>Tools:</strong> Git, Composer, phpMyAdmin</li>
</ul>
</section>
<section>
<h2>Professional Experience</h2>
<h3>Web Developer (Laravel)</h3>
<p><strong>Digital Developers and Technologies (SMC-Pvt) LTD</strong><br>
Nov 2021 – Present · Lahore, Pakistan
</p>
<p>
Working as a Laravel backend developer, building and maintaining
scalable web applications, APIs, and admin panels. Responsible for
backend architecture, database optimization, integrations, and performance improvements.
</p>
</section>
<section>
<h2>Projects</h2>
<h3>VPN Account Management System</h3>
<p>
A fully automated backend system for managing VPN users and subscriptions.
Built with Laravel, Livewire, and MySQL.
Includes authentication, subscription lifecycle management, and performance optimization.
</p>
<h3>Payment Gateway Integration</h3>
<p>
Integrated Stripe and PayPal for secure subscription-based and one-time payments.
Implemented robust logging, validation, and error-handling mechanisms.
</p>
<h3>CMS Admin VPN Panel</h3>
<p>
Developed a user-friendly admin panel for managing users, servers,
configurations, and subscriptions using Laravel and Livewire.
Focused on clean UI, scalability, and maintainability.
</p>
</section>
<section>
<h2>Why Work With Me</h2>
<p>
I bring a strong focus on backend architecture, scalability, and performance.
I communicate clearly, understand business requirements, and deliver
backend solutions that are reliable, secure, and built for long-term growth.
</p>
</section>
<footer>
<p>© 2025 Hamad Rashid</p>
</footer>
<script>
document.addEventListener('DOMContentLoaded', () => {
const toggleBtn = document.getElementById('themeToggle');
const currentTheme = localStorage.getItem('theme');
if (currentTheme === 'light') {
document.documentElement.setAttribute('data-theme', 'light');
toggleBtn.textContent = '☀️ Light';
}
toggleBtn.addEventListener('click', () => {
const isLight = document.documentElement.getAttribute('data-theme') === 'light';
if (isLight) {
document.documentElement.removeAttribute('data-theme');
localStorage.setItem('theme', 'dark');
toggleBtn.textContent = '🌙 Dark';
} else {
document.documentElement.setAttribute('data-theme', 'light');
localStorage.setItem('theme', 'light');
toggleBtn.textContent = '☀️ Light';
}
});
});
</script>
</body>
</html>