Spaces:
Running
Running
File size: 17,780 Bytes
443a98a |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sami Halawa Ribas | AI & Technology Specialist</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">
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
scroll-behavior: smooth;
}
.gradient-bg {
background: linear-gradient(135deg, #6e8efb, #a777e3);
}
.project-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.skill-bar {
height: 6px;
border-radius: 3px;
}
.timeline-item:not(:last-child)::after {
content: '';
position: absolute;
left: 7px;
top: 24px;
height: calc(100% - 24px);
width: 2px;
background: #e5e7eb;
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 0;
background-color: #6e8efb;
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.active::after {
width: 100%;
}
</style>
</head>
<body class="bg-gray-50 text-gray-800">
<!-- Header -->
<header class="fixed w-full bg-white shadow-sm z-50">
<div class="container mx-auto px-6 py-4">
<div class="flex items-center justify-between">
<div class="text-2xl font-bold text-indigo-600">Sami Halawa</div>
<nav class="hidden md:flex space-x-8">
<a href="#about" class="nav-link">About</a>
<a href="#projects" class="nav-link">Projects</a>
<a href="#experience" class="nav-link">Experience</a>
<a href="#skills" class="nav-link">Skills</a>
<a href="#education" class="nav-link">Education</a>
<a href="#contact" class="nav-link">Contact</a>
</nav>
<button class="md:hidden focus:outline-none" id="menu-toggle">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</div>
<!-- Mobile Menu -->
<div class="md:hidden hidden bg-white w-full px-6 py-4 shadow-md" id="mobile-menu">
<div class="flex flex-col space-y-4">
<a href="#about" class="nav-link">About</a>
<a href="#projects" class="nav-link">Projects</a>
<a href="#experience" class="nav-link">Experience</a>
<a href="#skills" class="nav-link">Skills</a>
<a href="#education" class="nav-link">Education</a>
<a href="#contact" class="nav-link">Contact</a>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="pt-32 pb-20 gradient-bg text-white">
<div class="container mx-auto px-6">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold mb-4">Sami Halawa Ribas</h1>
<h2 class="text-2xl md:text-3xl font-semibold mb-6">AI & Technology Specialist</h2>
<p class="text-lg mb-8">Transforming businesses through artificial intelligence, machine learning, and full-stack development solutions.</p>
<div class="flex space-x-4">
<a href="#contact" class="bg-white text-indigo-600 px-6 py-3 rounded-lg font-medium hover:bg-gray-100 transition duration-300">Contact Me</a>
<a href="#projects" class="border-2 border-white text-white px-6 py-3 rounded-lg font-medium hover:bg-white hover:text-indigo-600 transition duration-300">View Projects</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative">
<div class="w-64 h-64 md:w-80 md:h-80 bg-indigo-100 rounded-full overflow-hidden border-4 border-white shadow-xl">
<!-- Placeholder for profile image -->
<div class="w-full h-full bg-indigo-300 flex items-center justify-center">
<span class="text-6xl text-white font-bold">SH</span>
</div>
</div>
<div class="absolute -bottom-5 -right-5 bg-white text-indigo-600 px-4 py-2 rounded-lg shadow-lg">
<span class="font-semibold">+34 679 794 037</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-white">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold text-center mb-12">About Me</h2>
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
<p class="text-lg mb-6">I am a Technological Specialist and Full Stack Programmer, focusing on Artificial Intelligence and Machine Learning. With over a decade of experience in SEO, Online Marketing, and E-Commerce, I have successfully launched numerous Apps, Websites, and projects.</p>
<p class="text-lg mb-6">My expertise spans project management, development, and all stages from advertising to launch in physical stores and App Stores.</p>
<div class="mb-6">
<h3 class="text-xl font-semibold mb-3">Languages:</h3>
<div class="flex flex-wrap gap-2">
<span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full">English (C2)</span>
<span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full">Mandarin Chinese (C2)</span>
<span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full">Spanish (Native)</span>
</div>
</div>
</div>
<div class="md:w-1/2">
<div class="bg-gray-50 p-8 rounded-xl shadow-md">
<h3 class="text-xl font-semibold mb-4">Professional Highlights</h3>
<ul class="space-y-4">
<li class="flex items-start">
<div class="bg-indigo-100 p-2 rounded-full mr-4">
<i class="fas fa-lightbulb text-indigo-600"></i>
</div>
<span>Having lived and studied in China since age 15 on a UWC Scholarship, I am known for my creativity and problem-solving skills.</span>
</li>
<li class="flex items-start">
<div class="bg-indigo-100 p-2 rounded-full mr-4">
<i class="fas fa-cogs text-indigo-600"></i>
</div>
<span>I excel in optimizing solutions and resources to transform businesses and digital projects.</span>
</li>
<li class="flex items-start">
<div class="bg-indigo-100 p-2 rounded-full mr-4">
<i class="fas fa-rocket text-indigo-600"></i>
</div>
<span>By applying technical expertise and creativity, I tackle complex problems and thrive in challenging roles.</span>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="py-20 bg-gray-50">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold text-center mb-12">Featured AI Projects</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Project 1 -->
<div class="project-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
<div class="h-48 bg-indigo-100 flex items-center justify-center">
<i class="fas fa-robot text-6xl text-indigo-600"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-semibold mb-2">AutoClient</h3>
<p class="text-gray-600 mb-4">AI-powered client acquisition system that automates lead generation and qualification.</p>
<a href="#" class="text-indigo-600 font-medium hover:underline">View Demo <i class="fas fa-arrow-right ml-1"></i></a>
</div>
</div>
<!-- Project 2 -->
<div class="project-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
<div class="h-48 bg-blue-100 flex items-center justify-center">
<i class="fas fa-chart-line text-6xl text-blue-600"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-semibold mb-2">Market Intelligence Scraper</h3>
<p class="text-gray-600 mb-4">Advanced web scraping tool that collects and analyzes market data to provide actionable business intelligence.</p>
<a href="#" class="text-blue-600 font-medium hover:underline">View Demo <i class="fas fa-arrow-right ml-1"></i></a>
</div>
</div>
<!-- Project 3 -->
<div class="project-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
<div class="h-48 bg-green-100 flex items-center justify-center">
<i class="fas fa-database text-6xl text-green-600"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-semibold mb-2">Business Data Analyzer</h3>
<p class="text-gray-600 mb-4">Multimodal AI tool that analyzes company data across various formats and generates visual reports.</p>
<a href="#" class="text-green-600 font-medium hover:underline">View Demo <i class="fas fa-arrow-right ml-1"></i></a>
</div>
</div>
<!-- Project 4 -->
<div class="project-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
<div class="h-48 bg-yellow-100 flex items-center justify-center">
<i class="fab fa-bitcoin text-6xl text-yellow-600"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-semibold mb-2">CryptoAgent</h3>
<p class="text-gray-600 mb-4">Automated cryptocurrency trading system that combines web scraping with sophisticated algorithms.</p>
<a href="#" class="text-yellow-600 font-medium hover:underline">View Demo <i class="fas fa-arrow-right ml-1"></i></a>
</div>
</div>
<!-- Project 5 -->
<div class="project-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
<div class="h-48 bg-purple-100 flex items-center justify-center">
<i class="fas fa-file-excel text-6xl text-purple-600"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-semibold mb-2">Document & Spreadsheet Expert</h3>
<p class="text-gray-600 mb-4">AI system that processes and analyzes business documents and spreadsheets, extracting key information.</p>
<a href="#" class="text-purple-600 font-medium hover:underline">View Demo <i class="fas fa-arrow-right ml-1"></i></a>
</div>
</div>
<!-- Project 6 -->
<div class="project-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
<div class="h-48 bg-pink-100 flex items-center justify-center">
<i class="fas fa-code text-6xl text-pink-600"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-semibold mb-2">Melinda AI</h3>
<p class="text-gray-600 mb-4">AI-powered web development assistant that automates website creation and optimization.</p>
<a href="#" class="text-pink-600 font-medium hover:underline">View Demo <i class="fas fa-arrow-right ml-1"></i></a>
</div>
</div>
</div>
</div>
</section>
<!-- Experience Section -->
<section id="experience" class="py-20 bg-white">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold text-center mb-12">Professional Experience</h2>
<div class="max-w-3xl mx-auto">
<!-- Timeline Item 1 -->
<div class="relative timeline-item pl-8 pb-8">
<div class="absolute left-0 top-0 w-4 h-4 bg-indigo-600 rounded-full"></div>
<div class="bg-gray-50 p-6 rounded-lg shadow-sm">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-semibold">AI Project Leader</h3>
<span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full text-sm">2023 - Present</span>
</div>
<h4 class="text-lg text-indigo-600 mb-3">MelindaAI</h4>
<p class="text-gray-700">Spearheading AI projects with cutting-edge solutions for complex problems, specializing in machine learning, neural networks, and data analysis.</p>
</div>
</div>
<!-- Timeline Item 2 -->
<div class="relative timeline-item pl-8 pb-8">
<div class="absolute left-0 top-0 w-4 h-4 bg-indigo-600 rounded-full"></div>
<div class="bg-gray-50 p-6 rounded-lg shadow-sm">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-semibold">SEO Consultant and Digital Strategist</h3>
<span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full text-sm">2010 - 2023</span>
</div>
<h4 class="text-lg text-indigo-600 mb-3">Megawebs</h4>
<p class="text-gray-700">Optimized over 70 websites and digital projects, achieving significant organic growth in web traffic and conversion rates.</p>
</div>
</div>
<!-- Timeline Item 3 -->
<div class="relative timeline-item pl-8 pb-8">
<div class="absolute left-0 top-0 w-4 h-4 bg-indigo-600 rounded-full"></div>
<div class="bg-gray-50 p-6 rounded-lg shadow-sm">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-semibold">Senior Full Stack Developer</h3>
<span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full text-sm">2019 - 2023</span>
</div>
<h4 class="text-lg text-indigo-600 mb-3">Damehosting</h4>
<p class="text-gray-700">Led the development and maintenance of intricate web systems, ensuring timely project delivery with high quality.</p>
</div>
</div>
<!-- Timeline Item 4 -->
<div class="relative timeline-item pl-8 pb-8">
<div class="absolute left-0 top-0 w-4 h-4 bg-indigo-600 rounded-full"></div>
<div class="bg-gray-50 p-6 rounded-lg shadow-sm">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-semibold">Programming and AI Instructor</h3>
<span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full text-sm">2022 - Present</span>
</div>
<p class="text-gray-700">Conducted masterclasses and workshops on programming and
</html> |