Build a futuristic, professional, and interactive *portfolio website* for a Robotics Engineer with a B.E in Robotics and Automation. The website should highlight skills, projects, and experiences in Robotics, AI, and Automation with modern UI/UX, animations, and smooth navigation.
7e1d0a6
verified
| <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> | |