File size: 26,577 Bytes
7e1d0a6 aeb23c6 | 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 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 | <!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Puspharaj M - Robotics Engineer | AI & Automation</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/three@0.132.2/build/three.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Poppins', sans-serif;
background-color: #0f172a;
color: #e2e8f0;
scroll-behavior: smooth;
}
.font-orbitron {
font-family: 'Orbitron', sans-serif;
}
.glass-card {
background: rgba(15, 23, 42, 0.7);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.glow-on-hover {
transition: all 0.3s ease;
}
.glow-on-hover:hover {
box-shadow: 0 0 15px #3b82f6;
}
.skill-icon:hover {
transform: translateY(-5px);
filter: drop-shadow(0 0 8px #3b82f6);
}
.flip-card {
perspective: 1000px;
}
.flip-card-inner {
transition: transform 0.6s;
transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner {
transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
backface-visibility: hidden;
}
.flip-card-back {
transform: rotateY(180deg);
}
.typewriter {
border-right: 2px solid #3b82f6;
animation: blink-caret 0.75s step-end infinite;
}
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: #3b82f6; }
}
.timeline-item::before {
content: '';
position: absolute;
left: -38px;
top: 0;
width: 20px;
height: 20px;
border-radius: 50%;
background: #3b82f6;
border: 3px solid #0f172a;
}
</style>
</head>
<body>
<!-- Navbar -->
<nav class="fixed w-full z-50 glass-card py-4 px-6">
<div class="container mx-auto flex justify-between items-center">
<a href="#" class="font-orbitron text-2xl font-bold text-white">
<span class="text-blue-500">P</span>uspharaj
</a>
<div class="hidden md:flex space-x-8">
<a href="#home" class="text-white hover:text-blue-400 transition">Home</a>
<a href="#about" class="text-white hover:text-blue-400 transition">About</a>
<a href="#projects" class="text-white hover:text-blue-400 transition">Projects</a>
<a href="#experience" class="text-white hover:text-blue-400 transition">Experience</a>
<a href="#contact" class="text-white hover:text-blue-400 transition">Contact</a>
</div>
<button id="theme-toggle" class="p-2 rounded-full hover:bg-gray-700">
<i data-feather="moon" class="text-white"></i>
</button>
<button class="md:hidden">
<i data-feather="menu" class="text-white"></i>
</button>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="relative h-screen flex items-center justify-center overflow-hidden">
<div id="vanta-bg" class="absolute inset-0"></div>
<div class="container mx-auto px-6 z-10 text-center">
<h1 class="font-orbitron text-5xl md:text-7xl font-bold mb-4">
Puspharaj <span class="text-blue-500">M</span>
</h1>
<h2 class="text-xl md:text-2xl mb-6">Robotics Engineer | AI & Automation</h2>
<div class="typewriter inline-block text-xl md:text-2xl mb-8">
<span>Designing the Future with Robotics, AI, and Automation</span>
</div>
<div class="flex justify-center space-x-4">
<a href="#projects" class="px-6 py-3 bg-blue-600 hover:bg-blue-700 rounded-full glow-on-hover font-medium">
View Projects
</a>
<a href="#contact" class="px-6 py-3 border border-blue-500 hover:bg-blue-900/30 rounded-full glow-on-hover font-medium">
Contact Me
</a>
</div>
</div>
<div class="absolute bottom-10 left-0 right-0 flex justify-center">
<a href="#about" class="animate-bounce">
<i data-feather="chevron-down" class="text-white"></i>
</a>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-gradient-to-b from-slate-900 to-slate-800">
<div class="container mx-auto px-6">
<h2 class="font-orbitron text-3xl md:text-4xl font-bold mb-12 text-center">
About <span class="text-blue-500">Me</span>
</h2>
<div class="flex flex-col lg:flex-row items-center gap-12">
<div class="relative lg:w-1/3">
<div class="w-64 h-64 mx-auto rounded-full overflow-hidden border-4 border-blue-500 relative">
<img src="http://static.photos/technology/640x360/42" alt="Profile" class="w-full h-full object-cover">
<div class="absolute inset-0 rounded-full border-4 border-transparent animate-pulse"></div>
</div>
<div class="mt-8 text-center">
<h3 class="text-xl font-bold mb-2">B.E Robotics & Automation</h3>
<p class="text-blue-400">Graduated with Honors</p>
</div>
</div>
<div class="lg:w-2/3">
<div class="glass-card rounded-xl p-8 mb-12">
<h3 class="text-2xl font-bold mb-4">Professional Bio</h3>
<p class="mb-4">
Passionate Robotics Engineer with expertise in AI and Automation systems.
Specialized in designing intelligent robotic solutions that bridge the gap
between mechanical systems and artificial intelligence.
</p>
<p>
With a strong foundation in both hardware and software, I create innovative
solutions that push the boundaries of what's possible in automation and
intelligent systems.
</p>
</div>
<h3 class="text-2xl font-bold mb-6">Technical Skills</h3>
<div class="grid grid-cols-2 md:grid-cols-4 gap-6">
<div class="skill-icon flex flex-col items-center">
<div class="w-16 h-16 bg-slate-800 rounded-full flex items-center justify-center mb-2">
<i data-feather="cpu" class="text-blue-500"></i>
</div>
<span>Robotics</span>
</div>
<div class="skill-icon flex flex-col items-center">
<div class="w-16 h-16 bg-slate-800 rounded-full flex items-center justify-center mb-2">
<i data-feather="code" class="text-blue-500"></i>
</div>
<span>AI/ML</span>
</div>
<div class="skill-icon flex flex-col items-center">
<div class="w-16 h-16 bg-slate-800 rounded-full flex items-center justify-center mb-2">
<i data-feather="settings" class="text-blue-500"></i>
</div>
<span>Automation</span>
</div>
<div class="skill-icon flex flex-col items-center">
<div class="w-16 h-16 bg-slate-800 rounded-full flex items-center justify-center mb-2">
<i data-feather="globe" class="text-blue-500"></i>
</div>
<span>Web Dev</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="py-20 bg-slate-800">
<div class="container mx-auto px-6">
<h2 class="font-orbitron text-3xl md:text-4xl font-bold mb-12 text-center">
My <span class="text-blue-500">Projects</span>
</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Project 1 -->
<div class="flip-card h-80">
<div class="flip-card-inner h-full rounded-xl overflow-hidden">
<div class="flip-card-front glass-card h-full p-6 flex flex-col justify-end bg-cover bg-center" style="background-image: url('http://static.photos/technology/640x360/1')">
<h3 class="text-xl font-bold mb-2">Autonomous Drone System</h3>
<p class="text-sm">AI-powered navigation</p>
</div>
<div class="flip-card-back glass-card h-full p-6 flex flex-col justify-center">
<h3 class="text-xl font-bold mb-2">Autonomous Drone System</h3>
<p class="text-sm mb-4">AI-powered navigation system for industrial inspection drones</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="text-xs bg-blue-900/50 px-2 py-1 rounded">Python</span>
<span class="text-xs bg-blue-900/50 px-2 py-1 rounded">ROS</span>
<span class="text-xs bg-blue-900/50 px-2 py-1 rounded">TensorFlow</span>
</div>
<a href="#" class="text-blue-400 text-sm flex items-center">
View Details <i data-feather="arrow-right" class="ml-1 w-4 h-4"></i>
</a>
</div>
</div>
</div>
<!-- Project 2 -->
<div class="flip-card h-80">
<div class="flip-card-inner h-full rounded-xl overflow-hidden">
<div class="flip-card-front glass-card h-full p-6 flex flex-col justify-end bg-cover bg-center" style="background-image: url('http://static.photos/technology/640x360/2')">
<h3 class="text-xl font-bold mb-2">Industrial Robot Arm</h3>
<p class="text-sm">Precision automation</p>
</div>
<div class="flip-card-back glass-card h-full p-6 flex flex-col justify-center">
<h3 class="text-xl font-bold mb-2">Industrial Robot Arm</h3>
<p class="text-sm mb-4">6-axis robotic arm with computer vision for quality control</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="text-xs bg-blue-900/50 px-2 py-1 rounded">C++</span>
<span class="text-xs bg-blue-900/50 px-2 py-1 rounded">OpenCV</span>
<span class="text-xs bg-blue-900/50 px-2 py-1 rounded">Arduino</span>
</div>
<a href="#" class="text-blue-400 text-sm flex items-center">
View Details <i data-feather="arrow-right" class="ml-1 w-4 h-4"></i>
</a>
</div>
</div>
</div>
<!-- Project 3 -->
<div class="flip-card h-80">
<div class="flip-card-inner h-full rounded-xl overflow-hidden">
<div class="flip-card-front glass-card h-full p-6 flex flex-col justify-end bg-cover bg-center" style="background-image: url('http://static.photos/technology/640x360/3')">
<h3 class="text-xl font-bold mb-2">Smart Home Hub</h3>
<p class="text-sm">IoT automation</p>
</div>
<div class="flip-card-back glass-card h-full p-6 flex flex-col justify-center">
<h3 class="text-xl font-bold mb-2">Smart Home Hub</h3>
<p class="text-sm mb-4">Centralized control system for smart home devices with AI assistant</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="text-xs bg-blue-900/50 px-2 py-1 rounded">Node.js</span>
<span class="text-xs bg-blue-900/50 px-2 py-1 rounded">Python</span>
<span class="text-xs bg-blue-900/50 px-2 py-1 rounded">Raspberry Pi</span>
</div>
<a href="#" class="text-blue-400 text-sm flex items-center">
View Details <i data-feather="arrow-right" class="ml-1 w-4 h-4"></i>
</a>
</div>
</div>
</div>
</div>
<div class="text-center mt-12">
<a href="#" class="inline-flex items-center px-6 py-3 border border-blue-500 rounded-full glow-on-hover">
View All Projects
<i data-feather="arrow-right" class="ml-2"></i>
</a>
</div>
</div>
</section>
<!-- Experience Section -->
<section id="experience" class="py-20 bg-gradient-to-b from-slate-800 to-slate-900">
<div class="container mx-auto px-6">
<h2 class="font-orbitron text-3xl md:text-4xl font-bold mb-12 text-center">
My <span class="text-blue-500">Journey</span>
</h2>
<div class="relative max-w-3xl mx-auto">
<!-- Timeline -->
<div class="border-l-2 border-blue-500/50 pl-8 space-y-12">
<!-- Experience 1 -->
<div class="timeline-item relative">
<div class="glass-card rounded-xl p-6 hover:border-blue-500 border border-transparent transition-all duration-300">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-bold">Freelance Robotics Developer</h3>
<span class="text-sm bg-blue-900/50 px-2 py-1 rounded">2021 - Present</span>
</div>
<p class="text-sm mb-4">
Developed custom robotic solutions for clients across industries including
manufacturing, agriculture, and healthcare.
</p>
<div class="flex flex-wrap gap-2">
<span class="text-xs bg-blue-900/50 px-2 py-1 rounded">5+ Projects</span>
<span class="text-xs bg-blue-900/50 px-2 py-1 rounded">Client Satisfaction: 100%</span>
</div>
</div>
</div>
<!-- Experience 2 -->
<div class="timeline-item relative">
<div class="glass-card rounded-xl p-6 hover:border-blue-500 border border-transparent transition-all duration-300">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-bold">Robotics Research Intern</h3>
<span class="text-sm bg-blue-900/50 px-2 py-1 rounded">2020 - 2021</span>
</div>
<p class="text-sm mb-4">
Contributed to cutting-edge research in swarm robotics at a leading tech institute,
developing algorithms for coordinated multi-robot systems.
</p>
<div class="flex flex-wrap gap-2">
<span class="text-xs bg-blue-900/50 px-2 py-1 rounded">Published 2 Papers</span>
<span class="text-xs bg-blue-900/50 px-2 py-1 rounded">Python</span>
</div>
</div>
</div>
<!-- Experience 3 -->
<div class="timeline-item relative">
<div class="glass-card rounded-xl p-6 hover:border-blue-500 border border-transparent transition-all duration-300">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-bold">B.E Robotics & Automation</h3>
<span class="text-sm bg-blue-900/50 px-2 py-1 rounded">2016 - 2020</span>
</div>
<p class="text-sm mb-4">
Graduated with honors, specializing in intelligent systems and automation.
Thesis on "Machine Learning Applications in Industrial Robotics".
</p>
<div class="flex flex-wrap gap-2">
<span class="text-xs bg-blue-900/50 px-2 py-1 rounded">GPA: 3.8/4.0</span>
<span class="text-xs bg-blue-900/50 px-2 py-1 rounded">Dean's List</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-slate-900">
<div class="container mx-auto px-6">
<h2 class="font-orbitron text-3xl md:text-4xl font-bold mb-12 text-center">
Get In <span class="text-blue-500">Touch</span>
</h2>
<div class="flex flex-col lg:flex-row gap-12">
<div class="lg:w-1/2">
<div class="glass-card rounded-xl p-8 h-full">
<h3 class="text-2xl font-bold mb-6">Contact Information</h3>
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-blue-900/30 p-3 rounded-full mr-4">
<i data-feather="mail" class="text-blue-400"></i>
</div>
<div>
<h4 class="font-medium">Email</h4>
<a href="mailto:contact@puspharaj.com" class="text-blue-400">contact@puspharaj.com</a>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-900/30 p-3 rounded-full mr-4">
<i data-feather="phone" class="text-blue-400"></i>
</div>
<div>
<h4 class="font-medium">Phone</h4>
<a href="tel:+1234567890" class="text-blue-400">+1 (234) 567-890</a>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-900/30 p-3 rounded-full mr-4">
<i data-feather="map-pin" class="text-blue-400"></i>
</div>
<div>
<h4 class="font-medium">Location</h4>
<p class="text-blue-400">San Francisco, CA</p>
</div>
</div>
</div>
<div class="mt-12">
<h4 class="font-medium mb-4">Connect with me</h4>
<div class="flex space-x-4">
<a href="#" class="bg-blue-900/30 p-3 rounded-full hover:bg-blue-500 transition">
<i data-feather="github"></i>
</a>
<a href="#" class="bg-blue-900/30 p-3 rounded-full hover:bg-blue-500 transition">
<i data-feather="linkedin"></i>
</a>
<a href="#" class="bg-blue-900/30 p-3 rounded-full hover:bg-blue-500 transition">
<i data-feather="twitter"></i>
</a>
</div>
</div>
</div>
</div>
<div class="lg:w-1/2">
<div class="glass-card rounded-xl p-8">
<h3 class="text-2xl font-bold mb-6">Send a Message</h3>
<form>
<div class="mb-6">
<label for="name" class="block mb-2">Your Name</label>
<input type="text" id="name" class="w-full bg-slate-800 border border-slate-700 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent">
</div>
<div class="mb-6">
<label for="email" class="block mb-2">Email Address</label>
<input type="email" id="email" class="w-full bg-slate-800 border border-slate-700 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent">
</div>
<div class="mb-6">
<label for="message" class="block mb-2">Your Message</label>
<textarea id="message" rows="4" class="w-full bg-slate-800 border border-slate-700 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent"></textarea>
</div>
<button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white font-medium py-3 px-6 rounded-lg transition">
Send Message
</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-8 bg-slate-950">
<div class="container mx-auto px-6 text-center">
<div class="flex justify-center space-x-6 mb-6">
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="github"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="linkedin"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="instagram"></i>
</a>
</div>
<p class="text-gray-500 text-sm">
© 2023 Puspharaj M. All rights reserved.
</p>
</div>
</footer>
<script>
// Initialize Vanta.js background
document.addEventListener('DOMContentLoaded', function() {
feather.replace();
VANTA.GLOBE({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x3b82f6,
backgroundColor: 0x0f172a,
size: 0.8
});
// Theme toggle
const themeToggle = document.getElementById('theme-toggle');
const html = document.documentElement;
themeToggle.addEventListener('click', () => {
html.classList.toggle('dark');
const icon = themeToggle.querySelector('i');
if (html.classList.contains('dark')) {
feather.icons['moon'].toSvg().then(svg => icon.outerHTML = svg);
} else {
feather.icons['sun'].toSvg().then(svg => icon.outerHTML = svg);
}
});
// Typewriter effect
const typewriterText = "Designing the Future with Robotics, AI, and Automation";
let i = 0;
const speed = 50;
const typewriterElement = document.querySelector('.typewriter span');
function typeWriter() {
if (i < typewriterText.length) {
typewriterElement.innerHTML += typewriterText.charAt(i);
i++;
setTimeout(typeWriter, speed);
}
}
// Start typewriter effect
setTimeout(typeWriter, 1000);
});
</script>
</body>
</html>
|