Spaces:
Running
Running
File size: 28,220 Bytes
3a27a91 54d08d3 3a27a91 54d08d3 3a27a91 54d08d3 3a27a91 54d08d3 3a27a91 54d08d3 3a27a91 54d08d3 3a27a91 54d08d3 3a27a91 54d08d3 3a27a91 54d08d3 3a27a91 54d08d3 3a27a91 54d08d3 3a27a91 54d08d3 3a27a91 54d08d3 3a27a91 54d08d3 3a27a91 |
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 506 507 508 509 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Andreas Chandra | AI Engineer</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=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
scroll-behavior: smooth;
}
.gradient-text {
background: linear-gradient(90deg, #3b82f6, #8b5cf6);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.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);
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background: linear-gradient(90deg, #3b82f6, #8b5cf6);
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.timeline-item::before {
content: '';
position: absolute;
left: -20px;
top: 0;
width: 12px;
height: 12px;
border-radius: 50%;
background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}
</style>
</head>
<body class="bg-gray-50 text-gray-800">
<!-- Navigation -->
<nav class="fixed w-full bg-white shadow-sm z-50">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<span class="text-xl font-bold gradient-text">JD</span>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#home" class="nav-link text-gray-700 hover:text-gray-900">Home</a>
<a href="#projects" class="nav-link text-gray-700 hover:text-gray-900">Projects</a>
<a href="#resume" class="nav-link text-gray-700 hover:text-gray-900">Resume</a>
<a href="#contact" class="nav-link text-gray-700 hover:text-gray-900">Contact</a>
</div>
<div class="md:hidden flex items-center">
<button id="menu-btn" class="text-gray-500 hover:text-gray-900">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden bg-white pb-4 px-4 shadow-lg">
<a href="#home" class="block py-2 text-gray-700 hover:text-gray-900">Home</a>
<a href="#projects" class="block py-2 text-gray-700 hover:text-gray-900">Projects</a>
<a href="#resume" class="block py-2 text-gray-700 hover:text-gray-900">Resume</a>
<a href="#contact" class="block py-2 text-gray-700 hover:text-gray-900">Contact</a>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="pt-24 pb-16 md:pt-32 md:pb-24 px-4 sm:px-6 lg:px-8 max-w-6xl mx-auto">
<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">Hi, I'm <span class="gradient-text">Andreas Chandra</span></h1>
<h2 class="text-2xl md:text-3xl font-semibold text-gray-600 mb-6">AI Engineer</h2>
<p class="text-gray-600 mb-8 max-w-lg">
I build and deploy machine learning models that have business impacts.
</p>
<div class="flex space-x-4">
<a href="#projects" class="px-6 py-3 bg-gradient-to-r from-blue-500 to-purple-500 text-white rounded-lg font-medium hover:opacity-90 transition">
View Projects
</a>
<a href="#contact" class="px-6 py-3 border border-gray-300 rounded-lg font-medium hover:bg-gray-100 transition">
Contact Me
</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative w-64 h-64 md:w-80 md:h-80 rounded-full overflow-hidden border-4 border-white shadow-xl">
<img src="https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=774&q=80"
alt="John Doe" class="w-full h-full object-cover">
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="py-16 bg-gray-100">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4">Featured <span class="gradient-text">Projects</span></h2>
<p class="text-gray-600 max-w-2xl mx-auto">
Here are some of my recent projects that showcase my skills and expertise.
</p>
</div>
<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-gradient-to-r from-blue-400 to-purple-500 flex items-center justify-center">
<i class="fas fa-laptop-code text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">OCR</h3>
<p class="text-gray-600 mb-4">
An end-to-end OCR Receipts.
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="px-3 py-1 bg-blue-100 text-blue-800 text-xs font-medium rounded-full">React</span>
<span class="px-3 py-1 bg-green-100 text-green-800 text-xs font-medium rounded-full">Node.js</span>
<span class="px-3 py-1 bg-yellow-100 text-yellow-800 text-xs font-medium rounded-full">MongoDB</span>
<span class="px-3 py-1 bg-red-100 text-red-800 text-xs font-medium rounded-full">Stripe API</span>
</div>
<div class="flex space-x-3">
<a href="#" class="text-blue-500 hover:text-blue-700">
<i class="fas fa-external-link-alt"></i> Live Demo
</a>
<a href="#" class="text-gray-500 hover:text-gray-700">
<i class="fab fa-github"></i> Source Code
</a>
</div>
</div>
</div>
<!-- Project 2 -->
<div class="project-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
<div class="h-48 bg-gradient-to-r from-green-400 to-blue-500 flex items-center justify-center">
<i class="fas fa-mobile-alt text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Question Answering</h3>
<p class="text-gray-600 mb-4">
A dataset for Indonesian question answering.
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="px-3 py-1 bg-purple-100 text-purple-800 text-xs font-medium rounded-full">React Native</span>
<span class="px-3 py-1 bg-blue-100 text-blue-800 text-xs font-medium rounded-full">Firebase</span>
<span class="px-3 py-1 bg-pink-100 text-pink-800 text-xs font-medium rounded-full">D3.js</span>
</div>
<div class="flex space-x-3">
<a href="#" class="text-blue-500 hover:text-blue-700">
<i class="fas fa-external-link-alt"></i> Live Demo
</a>
<a href="#" class="text-gray-500 hover:text-gray-700">
<i class="fab fa-github"></i> Source Code
</a>
</div>
</div>
</div>
<!-- Project 3 -->
<div class="project-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
<div class="h-48 bg-gradient-to-r from-purple-500 to-pink-500 flex items-center justify-center">
<i class="fas fa-chart-line text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">MarqetSim</h3>
<p class="text-gray-600 mb-4">
LLM-powered multi agents persona for market research.
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="px-3 py-1 bg-blue-100 text-blue-800 text-xs font-medium rounded-full">Vue.js</span>
<span class="px-3 py-1 bg-green-100 text-green-800 text-xs font-medium rounded-full">Python</span>
<span class="px-3 py-1 bg-red-100 text-red-800 text-xs font-medium rounded-full">PostgreSQL</span>
<span class="px-3 py-1 bg-yellow-100 text-yellow-800 text-xs font-medium rounded-full">Chart.js</span>
</div>
<div class="flex space-x-3">
<a href="#" class="text-blue-500 hover:text-blue-700">
<i class="fas fa-external-link-alt"></i> Live Demo
</a>
<a href="#" class="text-gray-500 hover:text-gray-700">
<i class="fab fa-github"></i> Source Code
</a>
</div>
</div>
</div>
</div>
<div class="text-center mt-12">
<a href="#" class="inline-block px-6 py-3 border border-gray-300 rounded-lg font-medium hover:bg-gray-100 transition">
View All Projects
</a>
</div>
</div>
</section>
<!-- Resume Section -->
<section id="resume" class="py-16">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4">My <span class="gradient-text">Resume</span></h2>
<p class="text-gray-600 max-w-2xl mx-auto">
My professional journey and the skills I've acquired along the way.
</p>
</div>
<div class="flex flex-col md:flex-row gap-8">
<!-- Experience -->
<div class="md:w-1/2">
<h3 class="text-2xl font-bold mb-6 flex items-center">
<i class="fas fa-briefcase mr-3 text-blue-500"></i> Experience
</h3>
<div class="relative pl-8 border-l-2 border-gray-200 space-y-8">
<!-- Experience 1 -->
<div class="timeline-item relative">
<div class="bg-white p-6 rounded-lg shadow-sm">
<h4 class="font-bold text-lg mb-1">Senior Software Engineer</h4>
<div class="text-blue-500 mb-2">Tech Solutions Inc. • 2020 - Present</div>
<p class="text-gray-600">
Lead development of enterprise applications, mentor junior developers, and implement CI/CD pipelines.
</p>
</div>
</div>
<!-- Experience 2 -->
<div class="timeline-item relative">
<div class="bg-white p-6 rounded-lg shadow-sm">
<h4 class="font-bold text-lg mb-1">Software Developer</h4>
<div class="text-blue-500 mb-2">Digital Innovations • 2017 - 2020</div>
<p class="text-gray-600">
Developed web applications using React and Node.js, optimized database performance, and implemented RESTful APIs.
</p>
</div>
</div>
<!-- Experience 3 -->
<div class="timeline-item relative">
<div class="bg-white p-6 rounded-lg shadow-sm">
<h4 class="font-bold text-lg mb-1">Junior Developer</h4>
<div class="text-blue-500 mb-2">StartUp Labs • 2015 - 2017</div>
<p class="text-gray-600">
Assisted in front-end development, fixed bugs, and contributed to agile development processes.
</p>
</div>
</div>
</div>
</div>
<!-- Education & Skills -->
<div class="md:w-1/2">
<h3 class="text-2xl font-bold mb-6 flex items-center">
<i class="fas fa-graduation-cap mr-3 text-purple-500"></i> Education
</h3>
<div class="relative pl-8 border-l-2 border-gray-200 space-y-8 mb-12">
<!-- Education 1 -->
<div class="timeline-item relative">
<div class="bg-white p-6 rounded-lg shadow-sm">
<h4 class="font-bold text-lg mb-1">MSc in Computer Science</h4>
<div class="text-purple-500 mb-2">Stanford University • 2013 - 2015</div>
<p class="text-gray-600">
Specialized in Artificial Intelligence and Machine Learning with a 4.0 GPA.
</p>
</div>
</div>
<!-- Education 2 -->
<div class="timeline-item relative">
<div class="bg-white p-6 rounded-lg shadow-sm">
<h4 class="font-bold text-lg mb-1">BSc in Software Engineering</h4>
<div class="text-purple-500 mb-2">MIT • 2009 - 2013</div>
<p class="text-gray-600">
Graduated with honors. Focus on web technologies and software architecture.
</p>
</div>
</div>
</div>
<h3 class="text-2xl font-bold mb-6 flex items-center">
<i class="fas fa-code mr-3 text-green-500"></i> Skills
</h3>
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="mb-6">
<h4 class="font-medium mb-3">Programming</h4>
<div class="flex flex-wrap gap-2">
<span class="px-3 py-1 bg-blue-100 text-blue-800 rounded-full">Python</span>
<span class="px-3 py-1 bg-yellow-100 text-yellow-800 rounded-full">SQL</span>
<span class="px-3 py-1 bg-green-100 text-green-800 rounded-full">Bash</span>
</div>
</div>
<div class="mb-6">
<h4 class="font-medium mb-3">Machine Learning</h4>
<div class="flex flex-wrap gap-2">
<span class="px-3 py-1 bg-green-100 text-green-800 rounded-full">Scikit-learn</span>
<span class="px-3 py-1 bg-blue-100 text-blue-800 rounded-full">OpenCV</span>
<span class="px-3 py-1 bg-red-100 text-red-800 rounded-full">PyTorch</span>
</div>
</div>
<div>
<h4 class="font-medium mb-3">Other</h4>
<div class="flex flex-wrap gap-2">
<span class="px-3 py-1 bg-blue-100 text-blue-800 rounded-full">Docker</span>
<span class="px-3 py-1 bg-green-100 text-green-800 rounded-full">GCP</span>
<span class="px-3 py-1 bg-red-100 text-red-800 rounded-full">Git</span>
<span class="px-3 py-1 bg-yellow-100 text-yellow-800 rounded-full">PostgreSQL</span>
</div>
</div>
</div>
</div>
</div>
<div class="text-center mt-12">
<a href="#" class="inline-flex items-center px-6 py-3 bg-gradient-to-r from-blue-500 to-purple-500 text-white rounded-lg font-medium hover:opacity-90 transition">
<i class="fas fa-download mr-2"></i> Download Full Resume
</a>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 bg-gray-100">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4">Get In <span class="gradient-text">Touch</span></h2>
<p class="text-gray-600 max-w-2xl mx-auto">
Have a project in mind or want to discuss potential opportunities? Feel free to reach out!
</p>
</div>
<div class="flex flex-col md:flex-row gap-12">
<div class="md:w-1/2">
<form class="space-y-6">
<div>
<label for="name" class="block text-sm font-medium text-gray-700 mb-1">Name</label>
<input type="text" id="name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition">
</div>
<div>
<label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email</label>
<input type="email" id="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition">
</div>
<div>
<label for="message" class="block text-sm font-medium text-gray-700 mb-1">Message</label>
<textarea id="message" rows="5" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition"></textarea>
</div>
<button type="submit" class="w-full px-6 py-3 bg-gradient-to-r from-blue-500 to-purple-500 text-white rounded-lg font-medium hover:opacity-90 transition">
Send Message
</button>
</form>
</div>
<div class="md:w-1/2">
<div class="bg-white p-8 rounded-xl shadow-sm h-full">
<h3 class="text-xl font-bold mb-6">Contact Information</h3>
<div class="space-y-6">
<div class="flex items-start">
<div class="flex-shrink-0 h-10 w-10 rounded-full bg-blue-100 flex items-center justify-center text-blue-500">
<i class="fas fa-envelope"></i>
</div>
<div class="ml-4">
<h4 class="font-medium text-gray-900">Email</h4>
<p class="text-gray-600">[email protected]</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 h-10 w-10 rounded-full bg-purple-100 flex items-center justify-center text-purple-500">
<i class="fas fa-phone-alt"></i>
</div>
<div class="ml-4">
<h4 class="font-medium text-gray-900">Phone</h4>
<p class="text-gray-600">+1 (555) 123-4567</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 h-10 w-10 rounded-full bg-green-100 flex items-center justify-center text-green-500">
<i class="fas fa-map-marker-alt"></i>
</div>
<div class="ml-4">
<h4 class="font-medium text-gray-900">Location</h4>
<p class="text-gray-600">San Francisco, CA</p>
</div>
</div>
</div>
<div class="mt-8">
<h4 class="font-medium text-gray-900 mb-4">Connect with me</h4>
<div class="flex space-x-4">
<a href="#" class="h-10 w-10 rounded-full bg-gray-100 flex items-center justify-center text-gray-600 hover:bg-blue-100 hover:text-blue-500 transition">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="h-10 w-10 rounded-full bg-gray-100 flex items-center justify-center text-gray-600 hover:bg-gray-800 hover:text-white transition">
<i class="fab fa-github"></i>
</a>
<a href="#" class="h-10 w-10 rounded-full bg-gray-100 flex items-center justify-center text-gray-600 hover:bg-blue-500 hover:text-white transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="h-10 w-10 rounded-full bg-gray-100 flex items-center justify-center text-gray-600 hover:bg-red-500 hover:text-white transition">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-8">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-4 md:mb-0">
<span class="text-xl font-bold gradient-text">John Doe</span>
<p class="text-gray-400 mt-1">Building digital experiences that matter.</p>
</div>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-github"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-instagram"></i>
</a>
</div>
</div>
<div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400 text-sm">
<p>© 2023 John Doe. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('menu-btn').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
const targetElement = document.querySelector(targetId);
if (targetElement) {
// Close mobile menu if open
const mobileMenu = document.getElementById('mobile-menu');
mobileMenu.classList.add('hidden');
// Scroll to target
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
}
});
});
// Add shadow to navbar on scroll
window.addEventListener('scroll', function() {
const nav = document.querySelector('nav');
if (window.scrollY > 10) {
nav.classList.add('shadow-lg');
} else {
nav.classList.remove('shadow-lg');
}
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=andreaschandra/personal-page" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |