-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
398 lines (387 loc) · 23.5 KB
/
index.html
File metadata and controls
398 lines (387 loc) · 23.5 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
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="google-site-verification" content="TNKKZ9ssJB1sE8TCXhnewsDmn0femb1KNoGlh2vukKo" />
<title>Adombire George | Portfolio</title>
<meta name="description" content="Portfolio of Adombire George — Backend Developer skilled in Django, Python, Node, APIs, and building scalable web applications.">
<meta name="keywords" content="Adombire George, Adombire, George Gyan Kwame, Backend Developer, Django Developer, Python Developer, Ghana Developers, Portfolio">
<meta name="author" content="Adombire George">
<meta property="og:title" content="Adombire George | Software Developer">
<meta property="og:description" content="Backend Developer specializing in Python, Django, APIs, and scalable systems.">
<meta property="og:image" content="https://adombiregeorge.vercel.app/images/portfolio-2.jpg">
<meta property="og:url" content="https://adombiregeorge.vercel.app">
<meta property="og:type" content="website">
<meta property="og:site_name" content="Adombire George Portfolio">
<link rel="canonical" href="https://adombiregeorge.vercel.app">
<meta name="twitter:card" content="summary_large_image">
<link rel="canonical" href="https://adombiregeorge.vercel.app">
<!-- Tailwind CSS CDN with custom config -->
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
'space': ['"Space Grotesk"', 'sans-serif'],
'inter': ['Inter', 'sans-serif']
},
animation: {
'fade-in': 'fadeIn 1s ease-out forwards',
'fade-in-left': 'fadeInLeft 1s ease-out forwards',
'fade-in-right': 'fadeInRight 1s ease-out forwards',
'float': 'float 6s ease-in-out infinite',
'blob': 'blob 7s infinite',
},
keyframes: {
fadeIn: {
'from': { opacity: '0', transform: 'translateY(20px)' },
'to': { opacity: '1', transform: 'translateY(0)' }
},
fadeInLeft: {
'from': { opacity: '0', transform: 'translateX(-20px)' },
'to': { opacity: '1', transform: 'translateX(0)' }
},
fadeInRight: {
'from': { opacity: '0', transform: 'translateX(20px)' },
'to': { opacity: '1', transform: 'translateX(0)' }
},
float: {
'0%, 100%': { transform: 'translateY(0px)' },
'50%': { transform: 'translateY(-20px)' }
},
blob: {
'0%': { transform: 'translate(0px, 0px) scale(1)' },
'33%': { transform: 'translate(30px, -50px) scale(1.1)' },
'66%': { transform: 'translate(-20px, 20px) scale(0.9)' },
'100%': { transform: 'translate(0px, 0px) scale(1)' }
}
}
}
}
}
</script>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/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=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
html {
scroll-behavior: smooth;
}
.transition-colors {
transition-property: background-color, border-color, color, fill, stroke;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 300ms;
}
.transition-all {
transition-property: all;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 300ms;
}
.animation-delay-2000 {
animation-delay: 2s;
}
.animation-delay-4000 {
animation-delay: 4s;
}
</style>
<!-- One Image Favicon Solution -->
<link rel="icon" type="image/png" href="images/favicon.png">
<link rel="apple-touch-icon" href="images/favicon.png">
<link rel="shortcut icon" href="images/favicon.png">
<!-- Basic SEO Meta Tags -->
<meta name="description" content="Portfolio of Adombire George — Backend Developer and aspiring Full Stack Developer passionate about building modern web applications with Django, React, and Tailwind CSS.">
<meta name="keywords" content="Adombire George, Adombire, George Gyan Kwame, Backend Developer, Full Stack Developer, Django Developer, Portfolio, Ghana Developer">
<meta name="author" content="Adombire George">
<meta name="robots" content="index, follow">
<!-- Open Graph / Facebook -->
<meta property="og:title" content="Adombire George | Backend Developer Portfolio">
<meta property="og:description" content="Hi, I'm Adombire George — a Backend Developer from Ghana building modern web applications using Django and React.">
<meta property="og:url" content="https://adombiregeorge.vercel.app">
<meta property="og:type" content="website">
<meta property="og:site_name" content="Adombire George Portfolio">
<!-- Structured Data (Schema.org) -->
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "Person",
"name": "Adombire George",
"url": "https://adombiregeorge.vercel.app",
"jobTitle": "Backend Developer",
"worksFor": {
"@type": "Organization",
"name": "Pentatech Axis"
},
"sameAs": [
"https://github.com/georgegyan",
"https://www.linkedin.com/in/adombire-george",
"https://www.tiktok.com/@adombiretech"
]
}
</script>
</head>
<body class="bg-white dark:bg-gray-900 text-gray-800 dark:text-gray-200 font-inter transition-colors duration-300">
<!-- Navigation -->
<nav class="fixed w-full bg-white/80 dark:bg-gray-900/80 backdrop-blur-md z-50 border-b border-gray-200 dark:border-gray-800">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<a href="#" class="text-xl font-space font-bold text-indigo-600 dark:text-indigo-400">AG.</a>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#about" class="hover:text-indigo-600 dark:hover:text-indigo-400 transition-colors">About</a>
<a href="#skills" class="hover:text-indigo-600 dark:hover:text-indigo-400 transition-colors">Skills</a>
<a href="#projects" class="hover:text-indigo-600 dark:hover:text-indigo-400 transition-colors">Projects</a>
<a href="#contact" class="hover:text-indigo-600 dark:hover:text-indigo-400 transition-colors">Contact</a>
<button id="theme-toggle" class="p-2 rounded-full hover:bg-gray-200 dark:hover:bg-gray-700 transition-colors">
<i class="fas fa-moon dark:hidden"></i>
<i class="fas fa-sun hidden dark:block"></i>
</button>
</div>
<div class="md:hidden flex items-center">
<button id="mobile-menu-button" class="p-2 rounded-md hover:bg-gray-200 dark:hover:bg-gray-700 transition-colors">
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden bg-white dark:bg-gray-900 border-t border-gray-200 dark:border-gray-800">
<div class="px-2 pt-2 pb-3 space-y-1">
<a href="#about" class="block px-3 py-2 hover:text-indigo-600 dark:hover:text-indigo-400 transition-colors">About</a>
<a href="#skills" class="block px-3 py-2 hover:text-indigo-600 dark:hover:text-indigo-400 transition-colors">Skills</a>
<a href="#projects" class="block px-3 py-2 hover:text-indigo-600 dark:hover:text-indigo-400 transition-colors">Projects</a>
<a href="#contact" class="block px-3 py-2 hover:text-indigo-600 dark:hover:text-indigo-400 transition-colors">Contact</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="min-h-screen flex items-center pt-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20">
<div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center">
<div class="space-y-6 animate-fade-in">
<h1 class="text-4xl md:text-5xl lg:text-6xl font-bold font-space leading-tight">
Hi, I'm <span class="text-indigo-600 dark:text-indigo-400">Adombire George Gyan Kwame</span>
</h1>
<h2 class="text-2xl md:text-3xl text-gray-600 dark:text-gray-400 font-medium">
Backend Developer
</h2>
<p class="text-lg text-gray-600 dark:text-gray-400 max-w-lg">
I'm a passionate software developer specializing in building in web applications and cretive digital solutions.
Currently building amazing projects with Pentatech Axis.
As a developer, it's not always about building the next big app. Sometimes the little things make the biggest difference.
I enjoy improving old code, writing clear commit messages, and solving bugs without panic. I automate boring tasks, customize my dev setup and love
explaining tech in simple terms. Its the little things that keep me growing.
</p>
<div class="flex space-x-4 pt-4">
<a href="#contact" class="px-6 py-3 bg-indigo-600 hover:bg-indigo-700 text-white rounded-lg font-medium transition-colors shadow-lg hover:shadow-indigo-500/30">
Contact Me
</a>
<a href="#projects" class="px-6 py-3 border border-gray-300 dark:border-gray-700 hover:border-indigo-600 dark:hover:border-indigo-400 rounded-lg font-medium transition-colors">
View Work
</a>
</div>
</div>
<div class="relative w-64 h-64 md:w-80 md:h-80 lg:w-96 lg:h-96 mx-auto">
<!-- Blob background elements (keep if you want the animation) -->
<div class="absolute -top-6 -left-6 w-64 h-64 bg-indigo-100 dark:bg-indigo-900 rounded-full mix-blend-multiply filter blur-xl opacity-70 animate-blob"></div>
<div class="absolute -bottom-8 -right-8 w-64 h-64 bg-purple-100 dark:bg-purple-900 rounded-full mix-blend-multiply filter blur-xl opacity-70 animate-blob animation-delay-2000"></div>
<div class="absolute top-20 -right-4 w-64 h-64 bg-pink-100 dark:bg-pink-900 rounded-full mix-blend-multiply filter blur-xl opacity-70 animate-blob animation-delay-4000"></div>
<!-- Image Container -->
<div class="relative h-full w-full rounded-2xl bg-white dark:bg-gray-800 p-1 shadow-2xl border border-gray-200 dark:border-gray-700 overflow-hidden">
<img src="images/portfolio-2.jpg"
alt="Adombire George"
class="w-full h-full object-cover rounded-lg">
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-gray-50 dark:bg-gray-800/50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold font-space mb-4">About Me</h2>
<div class="w-20 h-1 bg-indigo-600 dark:bg-indigo-400 mx-auto"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center">
<div class="animate-fade-in-left">
<h3 class="text-2xl font-bold mb-6">Who I Am</h3>
<p class="text-gray-600 dark:text-gray-400 mb-4">
I'm a passionate Backend Developer and Aspiring Full Stack Developer with over 2 years of experience building web applications. I specialize in JavaScript ecosystems including React, Node.js, and modern CSS frameworks, Python and Django framework.
</p>
<p class="text-gray-600 dark:text-gray-400 mb-6">
My approach combines technical expertise with an eye for design, ensuring that the applications I build are not only functional but also provide an exceptional user experience. Over time, I have worked on several impactful projects which helped me in master key development
concepts such CRUD operations, realtime updates using Fetch API/AJAX and responsive frontend design using Bootstrap and Tailwind.
</p>
<div class="flex space-x-4">
<a href="https://github.com/georgegyan" class="flex items-center space-x-2 text-indigo-600 dark:text-indigo-400 hover:text-indigo-800 dark:hover:text-indigo-300 transition-colors">
<i class="fab fa-github"></i>
<span>GitHub</span>
</a>
<a href="https://www.linkedin.com/in/george-adombire-2b61892a7?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app" class="flex items-center space-x-2 text-indigo-600 dark:text-indigo-400 hover:text-indigo-800 dark:hover:text-indigo-300 transition-colors">
<i class="fab fa-linkedin"></i>
<span>LinkedIn</span>
</a>
</div>
</div>
<div class="grid grid-cols-2 gap-4 animate-fade-in-right">
<div class="bg-white dark:bg-gray-800 p-6 rounded-xl shadow-md border border-gray-200 dark:border-gray-700">
<div class="text-indigo-600 dark:text-indigo-400 mb-3">
<i class="fas fa-code text-3xl"></i>
</div>
<h4 class="font-bold mb-2">Web Development</h4>
<p class="text-sm text-gray-600 dark:text-gray-400">
Building responsive, accessible websites with modern technologies.
</p>
</div>
<div class="bg-white dark:bg-gray-800 p-6 rounded-xl shadow-md border border-gray-200 dark:border-gray-700">
<div class="text-indigo-600 dark:text-indigo-400 mb-3">
<i class="fas fa-mobile-alt text-3xl"></i>
</div>
<h4 class="font-bold mb-2">Mobile Apps</h4>
<p class="text-sm text-gray-600 dark:text-gray-400">
Cross-platform mobile applications with React Native.
</p>
</div>
<div class="bg-white dark:bg-gray-800 p-6 rounded-xl shadow-md border border-gray-200 dark:border-gray-700">
<div class="text-indigo-600 dark:text-indigo-400 mb-3">
<i class="fas fa-server text-3xl"></i>
</div>
<h4 class="font-bold mb-2">Backend Services</h4>
<p class="text-sm text-gray-600 dark:text-gray-400">
Robust API development, authentication and authorization and database architecture.
</p>
</div>
<div class="bg-white dark:bg-gray-800 p-6 rounded-xl shadow-md border border-gray-200 dark:border-gray-700">
<div class="text-indigo-600 dark:text-indigo-400 mb-3">
<i class="fas fa-paint-brush text-3xl"></i>
</div>
<h4 class="font-bold mb-2">UI/UX Design</h4>
<p class="text-sm text-gray-600 dark:text-gray-400">
Creating intuitive and beautiful user interfaces.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="py-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold font-space mb-4">My Skills</h2>
<div class="w-20 h-1 bg-indigo-600 dark:bg-indigo-400 mx-auto"></div>
</div>
<div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-5 gap-6" id="skills-container">
<!-- Skills will be populated by JavaScript -->
</div>
</div>
</section>
<!-- Tools Section -->
<section id="tools" class="py-20 bg-gray-50 dark:bg-gray-800/50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold font-space mb-4">Tools</h2>
<div class="w-20 h-1 bg-indigo-600 dark:bg-indigo-400 mx-auto"></div>
</div>
<div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-5 gap-6" id="tools-container">
<!-- Tools will be populated by JavaScript -->
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="py-20 bg-gray-50 dark:bg-gray-800/50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold font-space mb-4">Featured Projects</h2>
<div class="w-20 h-1 bg-indigo-600 dark:bg-indigo-400 mx-auto"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8" id="projects-container">
<!-- Projects will be populated by JavaScript -->
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold font-space mb-4">Get In Touch</h2>
<div class="w-20 h-1 bg-indigo-600 dark:bg-indigo-400 mx-auto"></div>
</div>
<div class="max-w-3xl mx-auto">
<form class="space-y-6" id="contact-form">
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div>
<label for="name" class="block text-sm font-medium mb-1">Name</label>
<input type="text" id="name" class="w-full px-4 py-3 rounded-lg border border-gray-300 dark:border-gray-700 focus:ring-2 focus:ring-indigo-600 dark:focus:ring-indigo-400 focus:border-transparent bg-white dark:bg-gray-800 transition-all">
</div>
<div>
<label for="email" class="block text-sm font-medium mb-1">Email</label>
<input type="email" id="email" class="w-full px-4 py-3 rounded-lg border border-gray-300 dark:border-gray-700 focus:ring-2 focus:ring-indigo-600 dark:focus:ring-indigo-400 focus:border-transparent bg-white dark:bg-gray-800 transition-all">
</div>
</div>
<div>
<label for="subject" class="block text-sm font-medium mb-1">Subject</label>
<input type="text" id="subject" class="w-full px-4 py-3 rounded-lg border border-gray-300 dark:border-gray-700 focus:ring-2 focus:ring-indigo-600 dark:focus:ring-indigo-400 focus:border-transparent bg-white dark:bg-gray-800 transition-all">
</div>
<div>
<label for="message" class="block text-sm font-medium mb-1">Message</label>
<textarea id="message" rows="5" class="w-full px-4 py-3 rounded-lg border border-gray-300 dark:border-gray-700 focus:ring-2 focus:ring-indigo-600 dark:focus:ring-indigo-400 focus:border-transparent bg-white dark:bg-gray-800 transition-all"></textarea>
</div>
<div>
<button type="submit" class="px-6 py-3 bg-indigo-600 hover:bg-indigo-700 text-white rounded-lg font-medium transition-colors shadow-lg hover:shadow-indigo-500/30 w-full md:w-auto">
Send Message
</button>
</div>
<!-- Add this right after your contact form -->
<div class="text-center mt-12">
<h3 class="text-xl font-medium mb-4">Or reach me directly on</h3>
<a href="https://wa.me/+233539275309"
target="_blank"
class="inline-flex items-center px-6 py-3 bg-green-600 hover:bg-green-700 text-white rounded-lg font-medium transition-colors shadow-lg hover:shadow-green-500/30">
<i class="fab fa-whatsapp mr-2 text-xl"></i>
WhatsApp Message
</a>
<p class="mt-4 text-gray-600 dark:text-gray-400">
</p>
</div>
</form>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-12 bg-gray-100 dark:bg-gray-800/70 border-t border-gray-200 dark:border-gray-700">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-6 md:mb-0">
<a href="#" class="text-xl font-space font-bold text-indigo-600 dark:text-indigo-400">AG.</a>
<p class="text-gray-600 dark:text-gray-400 mt-2">
© 2025 Adombire George . All rights reserved.
</p>
</div>
<div class="flex space-x-6">
<a href="https://github.com/georgegyan" class="text-gray-600 dark:text-gray-400 hover:text-indigo-600 dark:hover:text-indigo-400 transition-colors">
<i class="fab fa-github text-xl"></i>
</a>
<a href="https://www.linkedin.com/in/george" class="text-gray-600 dark:text-gray-400 hover:text-indigo-600 dark:hover:text-indigo-400 transition-colors">
<i class="fab fa-linkedin text-xl"></i>
</a>
<a href="https://x.com/gyan56679" class="text-gray-600 dark:text-gray-400 hover:text-indigo-600 dark:hover:text-indigo-400 transition-colors">
<i class="fab fa-twitter text-xl"></i>
</a>
<a href="https://www.instagram.com/khin_george" class="text-gray-600 dark:text-gray-400 hover:text-indigo-600 dark:hover:text-indigo-400 transition-colors">
<i class="fab fa-instagram text-xl"></i>
</a>
</div>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>