|
|
<!DOCTYPE html> |
|
|
<html lang="en"> |
|
|
<head> |
|
|
<meta charset="UTF-8"> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
|
<title>Ignitious Samasumo Pesuka | Software Engineer & Cybersecurity Expert</title> |
|
|
<script src="https://cdn.tailwindcss.com"></script> |
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
|
|
<script> |
|
|
tailwind.config = { |
|
|
theme: { |
|
|
extend: { |
|
|
colors: { |
|
|
primary: '#0ea5e9', |
|
|
secondary: '#8b5cf6', |
|
|
dark: '#0f172a', |
|
|
darker: '#0c1220' |
|
|
}, |
|
|
animation: { |
|
|
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite', |
|
|
'float': 'float 6s ease-in-out infinite', |
|
|
}, |
|
|
keyframes: { |
|
|
float: { |
|
|
'0%, 100%': { transform: 'translateY(0)' }, |
|
|
'50%': { transform: 'translateY(-20px)' }, |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
</script> |
|
|
<style> |
|
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap'); |
|
|
|
|
|
body { |
|
|
font-family: 'Inter', sans-serif; |
|
|
background-color: #0c1220; |
|
|
background-image: |
|
|
radial-gradient(at 0% 0%, rgba(14, 165, 233, 0.1) 0px, transparent 50%), |
|
|
radial-gradient(at 90% 0%, rgba(139, 92, 246, 0.1) 0px, transparent 50%); |
|
|
background-attachment: fixed; |
|
|
} |
|
|
|
|
|
.terminal { |
|
|
background: linear-gradient(145deg, #0f172a, #1e293b); |
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); |
|
|
border-radius: 12px; |
|
|
overflow: hidden; |
|
|
} |
|
|
|
|
|
.terminal-header { |
|
|
background: linear-gradient(90deg, #0f172a, #1e293b); |
|
|
padding: 12px 16px; |
|
|
display: flex; |
|
|
align-items: center; |
|
|
} |
|
|
|
|
|
.terminal-btn { |
|
|
width: 14px; |
|
|
height: 14px; |
|
|
border-radius: 50%; |
|
|
margin-right: 8px; |
|
|
} |
|
|
|
|
|
.terminal-content { |
|
|
padding: 24px; |
|
|
font-family: 'Courier New', monospace; |
|
|
font-size: 16px; |
|
|
line-height: 1.6; |
|
|
color: #cbd5e1; |
|
|
} |
|
|
|
|
|
.terminal-content span { |
|
|
color: #0ea5e9; |
|
|
} |
|
|
|
|
|
.skill-card { |
|
|
transition: all 0.3s ease; |
|
|
background: rgba(30, 41, 59, 0.5); |
|
|
backdrop-filter: blur(10px); |
|
|
border: 1px solid rgba(148, 163, 184, 0.1); |
|
|
} |
|
|
|
|
|
.skill-card:hover { |
|
|
transform: translateY(-5px); |
|
|
box-shadow: 0 10px 25px rgba(14, 165, 233, 0.2); |
|
|
border-color: rgba(14, 165, 233, 0.3); |
|
|
} |
|
|
|
|
|
.glow { |
|
|
box-shadow: 0 0 15px rgba(14, 165, 233, 0.5); |
|
|
} |
|
|
|
|
|
.glow-purple { |
|
|
box-shadow: 0 0 15px rgba(139, 92, 246, 0.5); |
|
|
} |
|
|
|
|
|
.glow-green { |
|
|
box-shadow: 0 0 15px rgba(34, 197, 94, 0.5); |
|
|
} |
|
|
|
|
|
.floating { |
|
|
animation: float 6s ease-in-out infinite; |
|
|
} |
|
|
|
|
|
.floating-delay { |
|
|
animation: float 6s ease-in-out infinite; |
|
|
animation-delay: 1s; |
|
|
} |
|
|
|
|
|
.floating-delay-2 { |
|
|
animation: float 6s ease-in-out infinite; |
|
|
animation-delay: 2s; |
|
|
} |
|
|
|
|
|
.section-divider { |
|
|
height: 1px; |
|
|
background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.3), transparent); |
|
|
} |
|
|
|
|
|
.project-card { |
|
|
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); |
|
|
background: rgba(15, 23, 42, 0.7); |
|
|
backdrop-filter: blur(10px); |
|
|
border: 1px solid rgba(148, 163, 184, 0.1); |
|
|
} |
|
|
|
|
|
.project-card:hover { |
|
|
transform: translateY(-10px); |
|
|
border-color: rgba(14, 165, 233, 0.3); |
|
|
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.1); |
|
|
} |
|
|
|
|
|
.contact-form input, .contact-form textarea { |
|
|
background: rgba(15, 23, 42, 0.7); |
|
|
border: 1px solid rgba(148, 163, 184, 0.2); |
|
|
transition: all 0.3s ease; |
|
|
} |
|
|
|
|
|
.contact-form input:focus, .contact-form textarea:focus { |
|
|
border-color: #0ea5e9; |
|
|
box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2); |
|
|
} |
|
|
|
|
|
.social-icon { |
|
|
transition: all 0.3s ease; |
|
|
} |
|
|
|
|
|
.social-icon:hover { |
|
|
transform: translateY(-5px); |
|
|
} |
|
|
|
|
|
.typing-text::after { |
|
|
content: "|"; |
|
|
animation: blink 1s infinite; |
|
|
color: #0ea5e9; |
|
|
} |
|
|
|
|
|
@keyframes blink { |
|
|
0%, 100% { opacity: 1; } |
|
|
50% { opacity: 0; } |
|
|
} |
|
|
|
|
|
.hologram { |
|
|
position: relative; |
|
|
overflow: hidden; |
|
|
} |
|
|
|
|
|
.hologram::before { |
|
|
content: ""; |
|
|
position: absolute; |
|
|
top: -50%; |
|
|
left: -50%; |
|
|
width: 200%; |
|
|
height: 200%; |
|
|
background: linear-gradient(45deg, transparent, rgba(14, 165, 233, 0.1), transparent); |
|
|
transform: rotate(45deg); |
|
|
animation: shine 3s infinite; |
|
|
} |
|
|
|
|
|
@keyframes shine { |
|
|
0% { transform: rotate(45deg) translateX(-100%); } |
|
|
100% { transform: rotate(45deg) translateX(100%); } |
|
|
} |
|
|
</style> |
|
|
</head> |
|
|
<body class="text-gray-200"> |
|
|
|
|
|
<nav class="fixed w-full z-50 bg-dark/80 backdrop-blur-sm py-4 px-6 border-b border-gray-800"> |
|
|
<div class="max-w-7xl mx-auto flex justify-between items-center"> |
|
|
<div class="flex items-center space-x-2"> |
|
|
<div class="w-10 h-10 rounded-full bg-gradient-to-r from-primary to-secondary flex items-center justify-center"> |
|
|
<span class="font-bold text-white">IP</span> |
|
|
</div> |
|
|
<span class="text-xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-primary to-secondary">Ignitious</span> |
|
|
</div> |
|
|
|
|
|
<div class="hidden md:flex space-x-8"> |
|
|
<a href="#home" class="hover:text-primary transition-colors">Home</a> |
|
|
<a href="#about" class="hover:text-primary transition-colors">About</a> |
|
|
<a href="#skills" class="hover:text-primary transition-colors">Skills</a> |
|
|
<a href="#projects" class="hover:text-primary transition-colors">Projects</a> |
|
|
<a href="#contact" class="hover:text-primary transition-colors">Contact</a> |
|
|
</div> |
|
|
|
|
|
<button class="md:hidden text-gray-400"> |
|
|
<i class="fas fa-bars text-2xl"></i> |
|
|
</button> |
|
|
</div> |
|
|
</nav> |
|
|
|
|
|
|
|
|
<section id="home" class="min-h-screen flex items-center pt-16 pb-20"> |
|
|
<div class="max-w-7xl mx-auto px-6 grid md:grid-cols-2 gap-12 items-center"> |
|
|
<div class="order-2 md:order-1"> |
|
|
<h1 class="text-4xl md:text-6xl font-bold mb-4"> |
|
|
<span class="block">Ignitious Samasumo Pesuka</span> |
|
|
<span class="bg-clip-text text-transparent bg-gradient-to-r from-primary to-secondary">Software Engineer & Cybersecurity Expert</span> |
|
|
</h1> |
|
|
|
|
|
<p class="text-xl text-gray-400 mb-8 max-w-2xl"> |
|
|
Crafting secure, scalable software solutions and protecting digital assets through ethical hacking and penetration testing. |
|
|
</p> |
|
|
|
|
|
<div class="flex flex-wrap gap-4 mb-12"> |
|
|
<div class="flex items-center space-x-2 px-4 py-2 bg-gray-800 rounded-full"> |
|
|
<i class="fas fa-code text-primary"></i> |
|
|
<span>Software Development</span> |
|
|
</div> |
|
|
<div class="flex items-center space-x-2 px-4 py-2 bg-gray-800 rounded-full"> |
|
|
<i class="fas fa-shield-alt text-secondary"></i> |
|
|
<span>Cybersecurity</span> |
|
|
</div> |
|
|
<div class="flex items-center space-x-2 px-4 py-2 bg-gray-800 rounded-full"> |
|
|
<i class="fas fa-user-secret text-green-500"></i> |
|
|
<span>Ethical Hacking</span> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="flex space-x-4"> |
|
|
<a href="#contact" class="px-8 py-3 bg-gradient-to-r from-primary to-secondary rounded-full font-medium hover:opacity-90 transition-opacity"> |
|
|
Contact Me |
|
|
</a> |
|
|
<a href="#projects" class="px-8 py-3 border border-gray-700 rounded-full font-medium hover:border-primary transition-colors"> |
|
|
View Projects |
|
|
</a> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="order-1 md:order-2 relative"> |
|
|
<div class="relative z-10 floating"> |
|
|
<div class="terminal mx-auto max-w-md"> |
|
|
<div class="terminal-header"> |
|
|
<div class="terminal-btn bg-red-500"></div> |
|
|
<div class="terminal-btn bg-yellow-500"></div> |
|
|
<div class="terminal-btn bg-green-500"></div> |
|
|
<span class="ml-4 text-gray-400 text-sm">ignitious@terminal</span> |
|
|
</div> |
|
|
<div class="terminal-content"> |
|
|
<p><span class="text-primary">$</span> whoami</p> |
|
|
<p>Ignitious Samasumo Pesuka</p> |
|
|
<p class="mt-4"><span class="text-primary">$</span> cat expertise.txt</p> |
|
|
<p>Software Engineer</p> |
|
|
<p>Certified Ethical Hacker</p> |
|
|
<p>Penetration Tester</p> |
|
|
<p>Cybersecurity Expert</p> |
|
|
<p class="mt-4 typing-text"><span class="text-primary">$</span> echo "Securing the digital world..."</p> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="absolute -top-10 -right-10 w-64 h-64 bg-primary rounded-full mix-blend-soft-light opacity-20 blur-3xl floating-delay"></div> |
|
|
<div class="absolute -bottom-10 -left-10 w-64 h-64 bg-secondary rounded-full mix-blend-soft-light opacity-20 blur-3xl floating-delay-2"></div> |
|
|
</div> |
|
|
</div> |
|
|
</section> |
|
|
|
|
|
|
|
|
<section id="about" class="py-20 bg-darker"> |
|
|
<div class="max-w-7xl mx-auto px-6"> |
|
|
<div class="text-center mb-16"> |
|
|
<h2 class="text-3xl md:text-4xl font-bold mb-4">About Me</h2> |
|
|
<div class="w-20 h-1 bg-gradient-to-r from-primary to-secondary mx-auto"></div> |
|
|
</div> |
|
|
|
|
|
<div class="grid md:grid-cols-2 gap-12 items-center"> |
|
|
<div class="hologram rounded-2xl overflow-hidden"> |
|
|
<div class="bg-gray-800 border border-gray-700 rounded-2xl p-8"> |
|
|
<div class="grid grid-cols-2 gap-4"> |
|
|
<div class="bg-gray-900 p-6 rounded-xl text-center"> |
|
|
<i class="fas fa-laptop-code text-3xl text-primary mb-3"></i> |
|
|
<h3 class="font-bold text-lg">Software Engineering</h3> |
|
|
<p class="text-gray-400 text-sm mt-2">Building robust applications</p> |
|
|
</div> |
|
|
|
|
|
<div class="bg-gray-900 p-6 rounded-xl text-center"> |
|
|
<i class="fas fa-shield-alt text-3xl text-secondary mb-3"></i> |
|
|
<h3 class="font-bold text-lg">Cybersecurity</h3> |
|
|
<p class="text-gray-400 text-sm mt-2">Protecting digital assets</p> |
|
|
</div> |
|
|
|
|
|
<div class="bg-gray-900 p-6 rounded-xl text-center"> |
|
|
<i class="fas fa-user-secret text-3xl text-green-500 mb-3"></i> |
|
|
<h3 class="font-bold text-lg">Ethical Hacking</h3> |
|
|
<p class="text-gray-400 text-sm mt-2">Identifying vulnerabilities</p> |
|
|
</div> |
|
|
|
|
|
<div class="bg-gray-900 p-6 rounded-xl text-center"> |
|
|
<i class="fas fa-network-wired text-3xl text-yellow-500 mb-3"></i> |
|
|
<h3 class="font-bold text-lg">Penetration Testing</h3> |
|
|
<p class="text-gray-400 text-sm mt-2">Simulating real attacks</p> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div> |
|
|
<h3 class="text-2xl font-bold mb-6">Professional Profile</h3> |
|
|
<p class="text-gray-400 mb-6"> |
|
|
I'm a passionate Software Engineer and Cybersecurity Expert with extensive experience in developing secure applications and protecting digital infrastructures. My unique combination of skills allows me to build systems that are not only functional but also resilient against modern cyber threats. |
|
|
</p> |
|
|
<p class="text-gray-400 mb-6"> |
|
|
As a Certified Ethical Hacker and Penetration Tester, I specialize in identifying vulnerabilities before malicious actors can exploit them. My approach combines technical expertise with strategic thinking to create comprehensive security solutions. |
|
|
</p> |
|
|
<p class="text-gray-400"> |
|
|
Whether it's developing cutting-edge software or securing complex networks, I bring a methodical and detail-oriented approach to every project, ensuring the highest standards of quality and security. |
|
|
</p> |
|
|
|
|
|
<div class="mt-8 flex flex-wrap gap-4"> |
|
|
<div class="flex items-center"> |
|
|
<div class="w-12 h-12 rounded-full bg-primary/10 flex items-center justify-center mr-3"> |
|
|
<i class="fas fa-award text-primary"></i> |
|
|
</div> |
|
|
<div> |
|
|
<p class="font-bold">Certified</p> |
|
|
<p class="text-gray-400 text-sm">Ethical Hacker</p> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="flex items-center"> |
|
|
<div class="w-12 h-12 rounded-full bg-secondary/10 flex items-center justify-center mr-3"> |
|
|
<i class="fas fa-graduation-cap text-secondary"></i> |
|
|
</div> |
|
|
<div> |
|
|
<p class="font-bold">Software Engineering</p> |
|
|
<p class="text-gray-400 text-sm">Expert Level</p> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</section> |
|
|
|
|
|
|
|
|
<section id="skills" class="py-20"> |
|
|
<div class="max-w-7xl mx-auto px-6"> |
|
|
<div class="text-center mb-16"> |
|
|
<h2 class="text-3xl md:text-4xl font-bold mb-4">Technical Expertise</h2> |
|
|
<div class="w-20 h-1 bg-gradient-to-r from-primary to-secondary mx-auto"></div> |
|
|
<p class="text-gray-400 mt-4 max-w-2xl mx-auto">My diverse skill set spans software development and cybersecurity domains</p> |
|
|
</div> |
|
|
|
|
|
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> |
|
|
|
|
|
<div class="skill-card rounded-2xl p-6"> |
|
|
<div class="flex items-center mb-6"> |
|
|
<div class="w-14 h-14 rounded-xl bg-primary/10 flex items-center justify-center mr-4"> |
|
|
<i class="fas fa-code text-primary text-2xl"></i> |
|
|
</div> |
|
|
<h3 class="text-xl font-bold">Software Development</h3> |
|
|
</div> |
|
|
|
|
|
<ul class="space-y-3"> |
|
|
<li class="flex items-center"> |
|
|
<i class="fas fa-check-circle text-primary mr-3"></i> |
|
|
<span>Full-Stack Development</span> |
|
|
</li> |
|
|
<li class="flex items-center"> |
|
|
<i class="fas fa-check-circle text-primary mr-3"></i> |
|
|
<span>Cloud Solutions (AWS, Azure)</span> |
|
|
</li> |
|
|
<li class="flex items-center"> |
|
|
<i class="fas fa-check-circle text-primary mr-3"></i> |
|
|
<span>DevOps & CI/CD</span> |
|
|
</li> |
|
|
<li class="flex items-center"> |
|
|
<i class="fas fa-check-circle text-primary mr-3"></i> |
|
|
<span>API Design & Integration</span> |
|
|
</li> |
|
|
<li class="flex items-center"> |
|
|
<i class="fas fa-check-circle text-primary mr-3"></i> |
|
|
<span>Database Architecture</span> |
|
|
</li> |
|
|
</ul> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="skill-card rounded-2xl p-6"> |
|
|
<div class="flex items-center mb-6"> |
|
|
<div class="w-14 h-14 rounded-xl bg-secondary/10 flex items-center justify-center mr-4"> |
|
|
<i class="fas fa-shield-alt text-secondary text-2xl"></i> |
|
|
</div> |
|
|
<h3 class="text-xl font-bold">Cybersecurity</h3> |
|
|
</div> |
|
|
|
|
|
<ul class="space-y-3"> |
|
|
<li class="flex items-center"> |
|
|
<i class="fas fa-check-circle text-secondary mr-3"></i> |
|
|
<span>Threat Analysis & Mitigation</span> |
|
|
</li> |
|
|
<li class="flex items-center"> |
|
|
<i class="fas fa-check-circle text-secondary mr-3"></i> |
|
|
<span>Security Architecture</span> |
|
|
</li> |
|
|
<li class="flex items-center"> |
|
|
<i class="fas fa-check-circle text-secondary mr-3"></i> |
|
|
<span>Incident Response</span> |
|
|
</li> |
|
|
<li class="flex items-center"> |
|
|
<i class="fas fa-check-circle text-secondary mr-3"></i> |
|
|
<span>Compliance & Governance</span> |
|
|
</li> |
|
|
<li class="flex items-center"> |
|
|
<i class="fas fa-check-circle text-secondary mr-3"></i> |
|
|
<span>Risk Assessment</span> |
|
|
</li> |
|
|
</ul> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="skill-card rounded-2xl p-6"> |
|
|
<div class="flex items-center mb-6"> |
|
|
<div class="w-14 h-14 rounded-xl bg-green-500/10 flex items-center justify-center mr-4"> |
|
|
<i class="fas fa-user-secret text-green-500 text-2xl"></i> |
|
|
</div> |
|
|
<h3 class="text-xl font-bold">Ethical Hacking</h3> |
|
|
</div> |
|
|
|
|
|
<ul class="space-y-3"> |
|
|
<li class="flex items-center"> |
|
|
<i class="fas fa-check-circle text-green-500 mr-3"></i> |
|
|
<span>Penetration Testing</span> |
|
|
</li> |
|
|
<li class="flex items-center"> |
|
|
<i class="fas fa-check-circle text-green-500 mr-3"></i> |
|
|
<span>Vulnerability Assessment</span> |
|
|
</li> |
|
|
<li class="flex items-center"> |
|
|
<i class="fas fa-check-circle text-green-500 mr-3"></i> |
|
|
<span>Social Engineering</span> |
|
|
</li> |
|
|
<li class="flex items-center"> |
|
|
<i class="fas fa-check-circle text-green-500 mr-3"></i> |
|
|
<span>Wireless Security</span> |
|
|
</li> |
|
|
<li class="flex items-center"> |
|
|
<i class="fas fa-check-circle text-green-500 mr-3"></i> |
|
|
<span>Web Application Security</span> |
|
|
</li> |
|
|
</ul> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="skill-card rounded-2xl p-6"> |
|
|
<div class="flex items-center mb-6"> |
|
|
<div class="w-14 h-14 rounded-xl bg-yellow-500/10 flex items-center justify-center mr-4"> |
|
|
<i class="fas fa-terminal text-yellow-500 text-2xl"></i> |
|
|
</div> |
|
|
<h3 class="text-xl font-bold">Programming</h3> |
|
|
</div> |
|
|
|
|
|
<div class="flex flex-wrap gap-3"> |
|
|
<span class="px-3 py-1 bg-gray-800 rounded-full text-sm">Python</span> |
|
|
<span class="px-3 py-1 bg-gray-800 rounded-full text-sm">JavaScript</span> |
|
|
<span class="px-3 py-1 bg-gray-800 rounded-full text-sm">Java</span> |
|
|
<span class="px-3 py-1 bg-gray-800 rounded-full text-sm">C++</span> |
|
|
<span class="px-3 py-1 bg-gray-800 rounded-full text-sm">Go</span> |
|
|
<span class="px-3 py-1 bg-gray-800 rounded-full text-sm">PHP</span> |
|
|
<span class="px-3 py-1 bg-gray-800 rounded-full text-sm">SQL</span> |
|
|
<span class="px-3 py-1 bg-gray-800 rounded-full text-sm">Bash</span> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="skill-card rounded-2xl p-6"> |
|
|
<div class="flex items-center mb-6"> |
|
|
<div class="w-14 h-14 rounded-xl bg-purple-500/10 flex items-center justify-center mr-4"> |
|
|
<i class="fas fa-tools text-purple-500 text-2xl"></i> |
|
|
</div> |
|
|
<h3 class="text-xl font-bold">Tools & Frameworks</h3> |
|
|
</div> |
|
|
|
|
|
<div class="flex flex-wrap gap-3"> |
|
|
<span class="px-3 py-1 bg-gray-800 rounded-full text-sm">Metasploit</span> |
|
|
<span class="px-3 py-1 bg-gray-800 rounded-full text-sm">Burp Suite</span> |
|
|
<span class="px-3 py-1 bg-gray-800 rounded-full text-sm">Kali Linux</span> |
|
|
<span class="px-3 py-1 bg-gray-800 rounded-full text-sm">Docker</span> |
|
|
<span class="px-3 py-1 bg-gray-800 rounded-full text-sm">Kubernetes</span> |
|
|
<span class="px-3 py-1 bg-gray-800 rounded-full text-sm">React</span> |
|
|
<span class="px-3 py-1 bg-gray-800 rounded-full text-sm">Node.js</span> |
|
|
<span class="px-3 py-1 bg-gray-800 rounded-full text-sm">TensorFlow</span> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="skill-card rounded-2xl p-6"> |
|
|
<div class="flex items-center mb-6"> |
|
|
<div class="w-14 h-14 rounded-xl bg-blue-500/10 flex items-center justify-center mr-4"> |
|
|
<i class="fas fa-certificate text-blue-500 text-2xl"></i> |
|
|
</div> |
|
|
<h3 class="text-xl font-bold">Certifications</h3> |
|
|
</div> |
|
|
|
|
|
<ul class="space-y-3"> |
|
|
<li class="flex items-center"> |
|
|
<i class="fas fa-medal text-blue-500 mr-3"></i> |
|
|
<span>Certified Ethical Hacker (CEH)</span> |
|
|
</li> |
|
|
<li class="flex items-center"> |
|
|
<i class="fas fa-medal text-blue-500 mr-3"></i> |
|
|
<span>Offensive Security Certified Professional (OSCP)</span> |
|
|
</li> |
|
|
<li class="flex items-center"> |
|
|
<i class="fas fa-medal text-blue-500 mr-3"></i> |
|
|
<span>Certified Information Systems Security Professional (CISSP)</span> |
|
|
</li> |
|
|
<li class="flex items-center"> |
|
|
<i class="fas fa-medal text-blue-500 mr-3"></i> |
|
|
<span>AWS Certified Security - Specialty</span> |
|
|
</li> |
|
|
<li class="flex items-center"> |
|
|
<i class="fas fa-medal text-blue-500 mr-3"></i> |
|
|
<span>CompTIA Security+</span> |
|
|
</li> |
|
|
</ul> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</section> |
|
|
|
|
|
|
|
|
<section id="projects" class="py-20 bg-darker"> |
|
|
<div class="max-w-7xl mx-auto px-6"> |
|
|
<div class="text-center mb-16"> |
|
|
<h2 class="text-3xl md:text-4xl font-bold mb-4">Featured Projects</h2> |
|
|
<div class="w-20 h-1 bg-gradient-to-r from-primary to-secondary mx-auto"></div> |
|
|
<p class="text-gray-400 mt-4 max-w-2xl mx-auto">A selection of my recent work in software development and cybersecurity</p> |
|
|
</div> |
|
|
|
|
|
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> |
|
|
|
|
|
<div class="project-card rounded-2xl overflow-hidden"> |
|
|
<div class="h-48 bg-gradient-to-r from-primary to-secondary relative"> |
|
|
<div class="absolute inset-0 flex items-center justify-center"> |
|
|
<i class="fas fa-lock text-6xl text-white/20"></i> |
|
|
</div> |
|
|
</div> |
|
|
<div class="p-6"> |
|
|
<div class="flex justify-between items-start mb-4"> |
|
|
<h3 class="text-xl font-bold">SecurePass Manager</h3> |
|
|
<span class="px-3 py-1 bg-green-500/10 text-green-500 rounded-full text-xs">Security</span> |
|
|
</div> |
|
|
<p class="text-gray-400 mb-4"> |
|
|
A zero-knowledge password manager with end-to-end encryption and biometric authentication. |
|
|
</p> |
|
|
<div class="flex flex-wrap gap-2 mb-4"> |
|
|
<span class="px-2 py-1 bg-gray-800 rounded text-xs">React</span> |
|
|
<span class="px-2 py-1 bg-gray-800 rounded text-xs">Node.js</span> |
|
|
<span class="px-2 py-1 bg-gray-800 rounded text-xs">Cryptography</span> |
|
|
</div> |
|
|
<div class="flex justify-between items-center"> |
|
|
<a href="#" class="text-primary hover:underline">View Details</a> |
|
|
<div class="flex space-x-2"> |
|
|
<a href="#" class="w-8 h-8 rounded-full bg-gray-800 flex items-center justify-center hover:bg-primary transition-colors"> |
|
|
<i class="fab fa-github"></i> |
|
|
</a> |
|
|
<a href="#" class="w-8 h-8 rounded-full bg-gray-800 flex items-center justify-center hover:bg-primary transition-colors"> |
|
|
<i class="fas fa-external-link-alt"></i> |
|
|
</a> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="project-card rounded-2xl overflow-hidden"> |
|
|
<div class="h-48 bg-gradient-to-r from-secondary to-purple-600 relative"> |
|
|
<div class="absolute inset-0 flex items-center justify-center"> |
|
|
<i class="fas fa-network-wired text-6xl text-white/20"></i> |
|
|
</div> |
|
|
</div> |
|
|
<div class="p-6"> |
|
|
<div class="flex justify-between items-start mb-4"> |
|
|
<h3 class="text-xl font-bold">PenTest Suite</h3> |
|
|
<span class="px-3 py-1 bg-yellow-500/10 text-yellow-500 rounded-full text-xs">Hacking</span> |
|
|
</div> |
|
|
<p class="text-gray-400 mb-4"> |
|
|
Comprehensive penetration testing framework with automated vulnerability scanning. |
|
|
</p> |
|
|
<div class="flex flex-wrap gap-2 mb-4"> |
|
|
<span class="px-2 py-1 bg-gray-800 rounded text-xs">Python</span> |
|
|
<span class="px-2 py-1 bg-gray-800 rounded text-xs">Nmap</span> |
|
|
<span class="px-2 py-1 bg-gray-800 rounded text-xs">Metasploit</span> |
|
|
</div> |
|
|
<div class="flex justify-between items-center"> |
|
|
<a href="#" class="text-primary hover:underline">View Details</a> |
|
|
<div class="flex space-x-2"> |
|
|
<a href="#" class="w-8 h-8 rounded-full bg-gray-800 flex items-center justify-center hover:bg-primary transition-colors"> |
|
|
<i class="fab fa-github"></i> |
|
|
</a> |
|
|
<a href="#" class="w-8 h-8 rounded-full bg-gray-800 flex items-center justify-center hover:bg-primary transition-colors"> |
|
|
<i class="fas fa-external-link-alt"></i> |
|
|
</a> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="project-card rounded-2xl overflow-hidden"> |
|
|
<div class="h-48 bg-gradient-to-r from-blue-500 to-cyan-500 relative"> |
|
|
<div class="absolute inset-0 flex items-center justify-center"> |
|
|
<i class="fas fa-cloud text-6xl text-white/20"></i> |
|
|
</div> |
|
|
</div> |
|
|
<div class="p-6"> |
|
|
<div class="flex justify-between items-start mb-4"> |
|
|
<h3 class="text-xl font-bold">CloudShield</h3> |
|
|
<span class="px-3 py-1 bg-blue-500/10 text-blue-500 rounded-full text-xs">Cloud</span> |
|
|
</div> |
|
|
<p class="text-gray-400 mb-4"> |
|
|
Cloud security monitoring platform with real-time threat detection and response. |
|
|
</p> |
|
|
<div class="flex flex-wrap gap-2 mb-4"> |
|
|
<span class="px-2 py-1 bg-gray-800 rounded text-xs">AWS</span> |
|
|
<span class="px-2 py-1 bg-gray-800 rounded text-xs">Terraform</span> |
|
|
<span class="px-2 py-1 bg-gray-800 rounded text-xs">Docker</span> |
|
|
</div> |
|
|
<div class="flex justify-between items-center"> |
|
|
<a href="#" class="text-primary hover:underline">View Details</a> |
|
|
<div class="flex space-x-2"> |
|
|
<a href="#" class="w-8 h-8 rounded-full bg-gray-800 flex items-center justify-center hover:bg-primary transition-colors"> |
|
|
<i class="fab fa-github"></i> |
|
|
</a> |
|
|
<a href="#" class="w-8 h-8 rounded-full bg-gray-800 flex items-center justify-center hover:bg-primary transition-colors"> |
|
|
<i class="fas fa-external-link-alt"></i> |
|
|
</a> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</section> |
|
|
|
|
|
|
|
|
<section id="contact" class="py-20"> |
|
|
<div class="max-w-7xl mx-auto px-6"> |
|
|
<div class="text-center mb-16"> |
|
|
<h2 class="text-3xl md:text-4xl font-bold mb-4">Get In Touch</h2> |
|
|
<div class="w-20 h-1 bg-gradient-to-r from-primary to-secondary mx-auto"></div> |
|
|
<p class="text-gray-400 mt-4 max-w-2xl mx-auto">Have a project in mind or need security consultation? Reach out to me!</p> |
|
|
</div> |
|
|
|
|
|
<div class="grid md:grid-cols-2 gap-12"> |
|
|
<div> |
|
|
<h3 class="text-2xl font-bold mb-6">Contact Information</h3> |
|
|
<p class="text-gray-400 mb-8"> |
|
|
I'm available for freelance work, security consulting, and collaborative projects. Feel free to reach out with any inquiries. |
|
|
</p> |
|
|
|
|
|
<div class="space-y-6"> |
|
|
<div class="flex items-start"> |
|
|
<div class="w-12 h-12 rounded-full bg-primary/10 flex items-center justify-center mr-4 flex-shrink-0"> |
|
|
<i class="fas fa-envelope text-primary"></i> |
|
|
</div> |
|
|
<div> |
|
|
<h4 class="font-bold text-lg">Email</h4> |
|
|
<a href="mailto:ignitious@zencode.site" class="text-gray-400 hover:text-primary transition-colors">ignitious@zencode.site</a> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="flex items-start"> |
|
|
<div class="w-12 h-12 rounded-full bg-secondary/10 flex items-center justify-center mr-4 flex-shrink-0"> |
|
|
<i class="fas fa-map-marker-alt text-secondary"></i> |
|
|
</div> |
|
|
<div> |
|
|
<h4 class="font-bold text-lg">Location</h4> |
|
|
<p class="text-gray-400">Global (Remote)</p> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="flex items-start"> |
|
|
<div class="w-12 h-12 rounded-full bg-green-500/10 flex items-center justify-center mr-4 flex-shrink-0"> |
|
|
<i class="fas fa-clock text-green-500"></i> |
|
|
</div> |
|
|
<div> |
|
|
<h4 class="font-bold text-lg">Response Time</h4> |
|
|
<p class="text-gray-400">Within 24 hours</p> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="mt-12"> |
|
|
<h4 class="font-bold text-lg mb-4">Connect With Me</h4> |
|
|
<div class="flex space-x-4"> |
|
|
<a href="#" class="social-icon w-12 h-12 rounded-full bg-gray-800 flex items-center justify-center hover:bg-primary transition-colors"> |
|
|
<i class="fab fa-github"></i> |
|
|
</a> |
|
|
<a href="#" class="social-icon w-12 h-12 rounded-full bg-gray-800 flex items-center justify-center hover:bg-primary transition-colors"> |
|
|
<i class="fab fa-linkedin-in"></i> |
|
|
</a> |
|
|
<a href="#" class="social-icon w-12 h-12 rounded-full bg-gray-800 flex items-center justify-center hover:bg-primary transition-colors"> |
|
|
<i class="fab fa-twitter"></i> |
|
|
</a> |
|
|
<a href="#" class="social-icon w-12 h-12 rounded-full bg-gray-800 flex items-center justify-center hover:bg-primary transition-colors"> |
|
|
<i class="fab fa-medium-m"></i> |
|
|
</a> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="bg-gray-900 rounded-2xl p-8"> |
|
|
<h3 class="text-2xl font-bold mb-6">Send a Message</h3> |
|
|
<form class="contact-form space-y-6"> |
|
|
<div> |
|
|
<label class="block text-gray-400 mb-2">Name</label> |
|
|
<input type="text" class="w-full px-4 py-3 rounded-lg focus:outline-none"> |
|
|
</div> |
|
|
|
|
|
<div> |
|
|
<label class="block text-gray-400 mb-2">Email</label> |
|
|
<input type="email" class="w-full px-4 py-3 rounded-lg focus:outline-none"> |
|
|
</div> |
|
|
|
|
|
<div> |
|
|
<label class="block text-gray-400 mb-2">Subject</label> |
|
|
<input type="text" class="w-full px-4 py-3 rounded-lg focus:outline-none"> |
|
|
</div> |
|
|
|
|
|
<div> |
|
|
<label class="block text-gray-400 mb-2">Message</label> |
|
|
<textarea rows="5" class="w-full px-4 py-3 rounded-lg focus:outline-none"></textarea> |
|
|
</div> |
|
|
|
|
|
<button type="submit" class="w-full py-3 bg-gradient-to-r from-primary to-secondary rounded-lg font-medium hover:opacity-90 transition-opacity"> |
|
|
Send Message |
|
|
</button> |
|
|
</form> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</section> |
|
|
|
|
|
|
|
|
<footer class="py-12 border-t border-gray-800"> |
|
|
<div class="max-w-7xl mx-auto px-6"> |
|
|
<div class="flex flex-col md:flex-row justify-between items-center"> |
|
|
<div class="flex items-center space-x-2 mb-6 md:mb-0"> |
|
|
<div class="w-10 h-10 rounded-full bg-gradient-to-r from-primary to-secondary flex items-center justify-center"> |
|
|
<span class="font-bold text-white">IP</span> |
|
|
</div> |
|
|
<span class="text-xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-primary to-secondary">Ignitious</span> |
|
|
</div> |
|
|
|
|
|
<div class="flex space-x-6 mb-6 md:mb-0"> |
|
|
<a href="#home" class="hover:text-primary transition-colors">Home</a> |
|
|
<a href="#about" class="hover:text-primary transition-colors">About</a> |
|
|
<a href="#skills" class="hover:text-primary transition-colors">Skills</a> |
|
|
<a href="#projects" class="hover:text-primary transition-colors">Projects</a> |
|
|
<a href="#contact" class="hover:text-primary transition-colors">Contact</a> |
|
|
</div> |
|
|
|
|
|
<div> |
|
|
<p class="text-gray-500 text-sm">© 2023 Ignitious Samasumo Pesuka. All rights reserved.</p> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</footer> |
|
|
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=s-bally/ignitious" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
|
|
</html> |