codeartisan-nexus / portfolio.html
BaberS's picture
redesign it. Name should be Baber Saeed
fcd765d verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bader's Portfolio | Code Artisan</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script>
<style>
.glass-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(15px);
border: 1px solid rgba(255, 255, 255, 0.18);
}
.gradient-text {
background: linear-gradient(90deg, #3b82f6, #8b5cf6);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
</style>
</head>
<body class="bg-gray-900 text-white min-h-screen">
<div id="vanta-background" class="fixed inset-0 z-0"></div>
<div class="relative z-10 container mx-auto px-4 py-16">
<header class="flex flex-col md:flex-row items-center mb-16">
<div class="w-48 h-48 md:w-64 md:h-64 rounded-full overflow-hidden border-4 border-white/20 mb-6 md:mb-0 md:mr-12">
<img src="http://static.photos/technology/640x360/42" alt="Bader's Profile" class="w-full h-full object-cover">
</div>
<div>
<h1 class="text-4xl md:text-6xl font-bold mb-2">Baber Saeed</h1>
<h2 class="text-2xl md:text-3xl font-semibold mb-4 gradient-text">Python Developer & Web Alchemist</h2>
<div class="flex space-x-4">
<a href="https://www.linkedin.com/in/babers/" class="text-blue-400 hover:text-blue-300 transition-colors">
<i data-feather="linkedin"></i>
</a>
<a href="https://github.com/babers" class="text-gray-300 hover:text-white transition-colors">
<i data-feather="github"></i>
</a>
</div>
</div>
</header>
<section class="glass-card rounded-2xl p-8 mb-16">
<h3 class="text-2xl font-bold mb-6 gradient-text">About Me</h3>
<p class="text-lg text-gray-300 leading-relaxed">
Python developer with a passion for crafting clean, efficient code and beautiful web experiences.
I transform complex problems into simple, elegant solutions.
My expertise spans backend development, API design, and cloud architecture.
</p>
</section>
<section class="mb-16">
<h3 class="text-3xl font-bold mb-8 gradient-text">Featured Projects</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div class="glass-card rounded-xl p-6 hover:shadow-lg hover:shadow-blue-500/20 transition-shadow">
<h4 class="text-xl font-bold mb-2">AI-Powered Analytics Platform</h4>
<p class="text-gray-300 mb-4">Built with Python, TensorFlow, and React for real-time data insights</p>
<div class="flex flex-wrap gap-2">
<span class="px-3 py-1 bg-blue-900/50 rounded-full text-sm">Python</span>
<span class="px-3 py-1 bg-purple-900/50 rounded-full text-sm">TensorFlow</span>
<span class="px-3 py-1 bg-blue-800/50 rounded-full text-sm">React</span>
</div>
</div>
<div class="glass-card rounded-xl p-6 hover:shadow-lg hover:shadow-purple-500/20 transition-shadow">
<h4 class="text-xl font-bold mb-2">Blockchain Payment Gateway</h4>
<p class="text-gray-300 mb-4">Secure cryptocurrency payment processing system</p>
<div class="flex flex-wrap gap-2">
<span class="px-3 py-1 bg-yellow-900/50 rounded-full text-sm">Solidity</span>
<span class="px-3 py-1 bg-gray-800/50 rounded-full text-sm">Node.js</span>
<span class="px-3 py-1 bg-green-900/50 rounded-full text-sm">Ethereum</span>
</div>
</div>
</div>
</section>
<section class="glass-card rounded-2xl p-8">
<h3 class="text-2xl font-bold mb-6 gradient-text">Get In Touch</h3>
<form class="grid grid-cols-1 gap-6">
<div>
<label for="name" class="block text-gray-300 mb-2">Name</label>
<input type="text" id="name" class="w-full bg-gray-800/50 border border-gray-700 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-blue-500">
</div>
<div>
<label for="email" class="block text-gray-300 mb-2">Email</label>
<input type="email" id="email" class="w-full bg-gray-800/50 border border-gray-700 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-blue-500">
</div>
<div>
<label for="message" class="block text-gray-300 mb-2">Message</label>
<textarea id="message" rows="4" class="w-full bg-gray-800/50 border border-gray-700 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-blue-500"></textarea>
</div>
<button type="submit" class="bg-gradient-to-r from-blue-500 to-purple-600 text-white font-medium py-3 px-6 rounded-lg hover:opacity-90 transition-opacity">
Send Message
</button>
</form>
</section>
</div>
<script>
VANTA.NET({
el: "#vanta-background",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x3b82f6,
backgroundColor: 0x111827,
points: 12.00,
maxDistance: 22.00,
spacing: 18.00
});
feather.replace();
</script>
</body>
</html>