| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>My LinkedIn Profile | Code Wizard's Linked Lounge</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> |
| <style> |
| .linkedin-card { |
| background: linear-gradient(135deg, #0077b5 0%, #00a0dc 100%); |
| } |
| .skill-pill { |
| background-color: rgba(255,255,255,0.1); |
| backdrop-filter: blur(10px); |
| } |
| </style> |
| </head> |
| <body class="bg-gray-100 min-h-screen"> |
| <div class="container mx-auto px-4 py-12"> |
| <div class="max-w-4xl mx-auto"> |
| |
| <div class="linkedin-card rounded-xl shadow-2xl overflow-hidden text-white mb-12"> |
| <div class="p-8 md:p-12 flex flex-col md:flex-row items-center"> |
| <div class="w-32 h-32 md:w-48 md:h-48 rounded-full border-4 border-white overflow-hidden mb-6 md:mb-0 md:mr-8"> |
| <img src="http://static.photos/people/320x240/42" alt="Profile" class="w-full h-full object-cover"> |
| </div> |
| <div class="flex-1 text-center md:text-left"> |
| <h1 class="text-3xl md:text-4xl font-bold mb-2">Bader Alrashed</h1> |
| <p class="text-xl opacity-90 mb-4">Software Engineer & Web Developer</p> |
| <div class="flex flex-wrap justify-center md:justify-start gap-2 mb-6"> |
| <span class="skill-pill px-4 py-1 rounded-full">Python</span> |
| <span class="skill-pill px-4 py-1 rounded-full">JavaScript</span> |
| <span class="skill-pill px-4 py-1 rounded-full">HTML/CSS</span> |
| <span class="skill-pill px-4 py-1 rounded-full">React</span> |
| </div> |
| <a href="https://www.linkedin.com/in/babers/" target="_blank" class="inline-flex items-center bg-white text-blue-700 px-6 py-3 rounded-lg font-medium hover:bg-opacity-90 transition"> |
| <i data-feather="linkedin" class="mr-2"></i> |
| View My LinkedIn Profile |
| </a> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="bg-white rounded-xl shadow-lg p-8 mb-8"> |
| <h2 class="text-2xl font-bold text-gray-800 mb-6">Professional Experience</h2> |
| <div class="space-y-6"> |
| <div class="border-l-4 border-blue-500 pl-6 py-1"> |
| <h3 class="text-xl font-semibold">Senior Software Engineer</h3> |
| <p class="text-gray-600">XYZ Company • 2020 - Present</p> |
| <p class="text-gray-700 mt-2">Leading development of web applications using modern JavaScript frameworks and Python backend services.</p> |
| </div> |
| <div class="border-l-4 border-blue-500 pl-6 py-1"> |
| <h3 class="text-xl font-semibold">Web Developer</h3> |
| <p class="text-gray-600">ABC Tech • 2017 - 2020</p> |
| <p class="text-gray-700 mt-2">Developed and maintained multiple client websites with responsive design and CMS integrations.</p> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="bg-white rounded-xl shadow-lg p-8"> |
| <h2 class="text-2xl font-bold text-gray-800 mb-6">Education</h2> |
| <div class="border-l-4 border-blue-500 pl-6 py-1"> |
| <h3 class="text-xl font-semibold">Bachelor of Computer Science</h3> |
| <p class="text-gray-600">University of Technology • 2013 - 2017</p> |
| <p class="text-gray-700 mt-2">Specialized in Software Engineering and Web Development.</p> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| <script> |
| feather.replace(); |
| </script> |
| </body> |
| </html> |