Spaces:
Running
Running
File size: 30,669 Bytes
7a5345a |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Research Portfolio | Jane Doe</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>
/* Custom animations */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.fade-in {
animation: fadeIn 0.8s ease-out forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
/* Smooth scrolling */
html {
scroll-behavior: smooth;
}
/* Publication card hover effect */
.publication-card {
transition: all 0.3s ease;
}
.publication-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body class="bg-gray-50 font-sans 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">
<a href="#" class="text-xl font-semibold text-indigo-600">Jane Doe</a>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#about" class="text-gray-600 hover:text-indigo-600 transition">About</a>
<a href="#research" class="text-gray-600 hover:text-indigo-600 transition">Research</a>
<a href="#publications" class="text-gray-600 hover:text-indigo-600 transition">Publications</a>
<a href="#contact" class="text-gray-600 hover:text-indigo-600 transition">Contact</a>
</div>
<div class="md:hidden flex items-center">
<button id="menu-btn" class="text-gray-600 hover:text-indigo-600">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden bg-white shadow-lg">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="#about" class="block px-3 py-2 text-gray-600 hover:text-indigo-600">About</a>
<a href="#research" class="block px-3 py-2 text-gray-600 hover:text-indigo-600">Research</a>
<a href="#publications" class="block px-3 py-2 text-gray-600 hover:text-indigo-600">Publications</a>
<a href="#contact" class="block px-3 py-2 text-gray-600 hover:text-indigo-600">Contact</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section 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-8 md:mb-0 fade-in">
<h1 class="text-4xl md:text-5xl font-bold text-gray-900 mb-4">Jane Doe</h1>
<h2 class="text-2xl md:text-3xl font-semibold text-indigo-600 mb-4">Graduate Research Student</h2>
<p class="text-lg text-gray-600 mb-6">Exploring the frontiers of <span class="text-indigo-600">quantum computing</span> and <span class="text-indigo-600">machine learning</span> at Stanford University.</p>
<div class="flex space-x-4">
<a href="#research" class="bg-indigo-600 hover:bg-indigo-700 text-white px-6 py-3 rounded-lg transition">View Research</a>
<a href="#contact" class="border border-indigo-600 text-indigo-600 hover:bg-indigo-50 px-6 py-3 rounded-lg transition">Contact Me</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center fade-in delay-1">
<div class="relative w-64 h-64 md:w-80 md:h-80 rounded-full overflow-hidden border-4 border-indigo-100 shadow-lg">
<img src="https://images.unsplash.com/photo-1573496359142-b8d87734a5cd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=688&q=80"
alt="Jane Doe"
class="w-full h-full object-cover">
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-16 bg-white px-4 sm:px-6 lg:px-8">
<div class="max-w-6xl mx-auto">
<h2 class="text-3xl font-bold text-center mb-12 fade-in">About Me</h2>
<div class="flex flex-col md:flex-row gap-8">
<div class="md:w-1/2 fade-in delay-1">
<h3 class="text-xl font-semibold mb-4 text-indigo-600">Background</h3>
<p class="text-gray-600 mb-4">I'm a Ph.D. candidate in Computer Science at Stanford University, specializing in quantum computing and its applications in machine learning. My research focuses on developing novel quantum algorithms that can outperform classical approaches for optimization problems.</p>
<p class="text-gray-600 mb-6">Before joining Stanford, I completed my Master's in Physics at MIT, where I worked on quantum error correction techniques. My undergraduate studies were at UC Berkeley, where I double-majored in Computer Science and Physics.</p>
<h3 class="text-xl font-semibold mb-4 text-indigo-600">Research Interests</h3>
<div class="flex flex-wrap gap-2 mb-6">
<span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full text-sm">Quantum Computing</span>
<span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full text-sm">Machine Learning</span>
<span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full text-sm">Quantum Algorithms</span>
<span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full text-sm">Optimization</span>
<span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full text-sm">Quantum Error Correction</span>
</div>
</div>
<div class="md:w-1/2 fade-in delay-2">
<h3 class="text-xl font-semibold mb-4 text-indigo-600">Education</h3>
<div class="space-y-4">
<div class="border-l-2 border-indigo-500 pl-4 py-1">
<h4 class="font-medium">Stanford University</h4>
<p class="text-gray-600">Ph.D. in Computer Science (2020-Present)</p>
<p class="text-sm text-gray-500">Advisor: Prof. John Smith</p>
</div>
<div class="border-l-2 border-indigo-500 pl-4 py-1">
<h4 class="font-medium">Massachusetts Institute of Technology</h4>
<p class="text-gray-600">M.Sc. in Physics (2018-2020)</p>
<p class="text-sm text-gray-500">Thesis: "Quantum Error Correction in Noisy Intermediate-Scale Quantum Devices"</p>
</div>
<div class="border-l-2 border-indigo-500 pl-4 py-1">
<h4 class="font-medium">University of California, Berkeley</h4>
<p class="text-gray-600">B.Sc. in Computer Science & Physics (2014-2018)</p>
<p class="text-sm text-gray-500">Summa Cum Laude, Phi Beta Kappa</p>
</div>
</div>
<h3 class="text-xl font-semibold mt-8 mb-4 text-indigo-600">Awards & Honors</h3>
<ul class="list-disc list-inside text-gray-600 space-y-1">
<li>NSF Graduate Research Fellowship (2021)</li>
<li>Stanford Graduate Fellowship (2020)</li>
<li>MIT Physics Department Award (2019)</li>
<li>UC Berkeley Chancellor's Scholar (2014-2018)</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Research Section -->
<section id="research" class="py-16 bg-gray-50 px-4 sm:px-6 lg:px-8">
<div class="max-w-6xl mx-auto">
<h2 class="text-3xl font-bold text-center mb-12 fade-in">Research Projects</h2>
<div class="grid md:grid-cols-2 gap-8">
<!-- Project 1 -->
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition fade-in delay-1">
<div class="flex items-center mb-4">
<div class="bg-indigo-100 p-3 rounded-lg mr-4">
<i class="fas fa-atom text-indigo-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold">Quantum Machine Learning</h3>
</div>
<p class="text-gray-600 mb-4">Developing hybrid quantum-classical algorithms for machine learning tasks that show potential quantum advantage. Our approach combines parameterized quantum circuits with classical neural networks.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-gray-100 text-gray-800 px-2 py-1 rounded-full text-xs">Quantum Computing</span>
<span class="bg-gray-100 text-gray-800 px-2 py-1 rounded-full text-xs">Machine Learning</span>
<span class="bg-gray-100 text-gray-800 px-2 py-1 rounded-full text-xs">Tensor Networks</span>
</div>
<a href="#" class="text-indigo-600 hover:text-indigo-800 font-medium inline-flex items-center">
Learn More <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Project 2 -->
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition fade-in delay-2">
<div class="flex items-center mb-4">
<div class="bg-indigo-100 p-3 rounded-lg mr-4">
<i class="fas fa-project-diagram text-indigo-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold">Quantum Optimization</h3>
</div>
<p class="text-gray-600 mb-4">Investigating quantum algorithms for combinatorial optimization problems with applications in logistics and finance. Our work focuses on reducing the quantum resources required for practical implementations.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-gray-100 text-gray-800 px-2 py-1 rounded-full text-xs">QAOA</span>
<span class="bg-gray-100 text-gray-800 px-2 py-1 rounded-full text-xs">Combinatorial Optimization</span>
<span class="bg-gray-100 text-gray-800 px-2 py-1 rounded-full text-xs">Quantum Annealing</span>
</div>
<a href="#" class="text-indigo-600 hover:text-indigo-800 font-medium inline-flex items-center">
Learn More <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Project 3 -->
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition fade-in delay-1">
<div class="flex items-center mb-4">
<div class="bg-indigo-100 p-3 rounded-lg mr-4">
<i class="fas fa-shield-alt text-indigo-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold">Error Mitigation</h3>
</div>
<p class="text-gray-600 mb-4">Developing novel error mitigation techniques for noisy intermediate-scale quantum (NISQ) devices. Our methods significantly improve the reliability of quantum computations without requiring full error correction.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-gray-100 text-gray-800 px-2 py-1 rounded-full text-xs">NISQ</span>
<span class="bg-gray-100 text-gray-800 px-2 py-1 rounded-full text-xs">Error Mitigation</span>
<span class="bg-gray-100 text-gray-800 px-2 py-1 rounded-full text-xs">Quantum Characterization</span>
</div>
<a href="#" class="text-indigo-600 hover:text-indigo-800 font-medium inline-flex items-center">
Learn More <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Project 4 -->
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition fade-in delay-2">
<div class="flex items-center mb-4">
<div class="bg-indigo-100 p-3 rounded-lg mr-4">
<i class="fas fa-network-wired text-indigo-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold">Quantum Networks</h3>
</div>
<p class="text-gray-600 mb-4">Exploring protocols for quantum communication and distributed quantum computing. Our research includes developing efficient entanglement distribution schemes and quantum network coding.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-gray-100 text-gray-800 px-2 py-1 rounded-full text-xs">Quantum Communication</span>
<span class="bg-gray-100 text-gray-800 px-2 py-1 rounded-full text-xs">Entanglement</span>
<span class="bg-gray-100 text-gray-800 px-2 py-1 rounded-full text-xs">Distributed Computing</span>
</div>
<a href="#" class="text-indigo-600 hover:text-indigo-800 font-medium inline-flex items-center">
Learn More <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
</section>
<!-- Publications Section -->
<section id="publications" class="py-16 bg-white px-4 sm:px-6 lg:px-8">
<div class="max-w-6xl mx-auto">
<h2 class="text-3xl font-bold text-center mb-12 fade-in">Publications</h2>
<div class="space-y-6">
<!-- Publication 1 -->
<div class="publication-card bg-gray-50 p-6 rounded-lg border border-gray-200 fade-in delay-1">
<div class="flex flex-col md:flex-row md:items-center md:justify-between mb-2">
<h3 class="text-xl font-semibold text-indigo-700">Quantum Machine Learning for Optimization Problems</h3>
<span class="text-sm text-gray-500 mt-1 md:mt-0">Nature Quantum Information, 2023</span>
</div>
<p class="text-gray-600 mb-3">J. Doe, M. Smith, A. Johnson</p>
<p class="text-gray-700 mb-4">We present a novel hybrid quantum-classical algorithm that demonstrates a polynomial speedup for certain optimization problems compared to purely classical approaches. The method combines variational quantum circuits with classical neural networks.</p>
<div class="flex items-center">
<a href="#" class="text-indigo-600 hover:text-indigo-800 mr-4 inline-flex items-center">
<i class="fas fa-file-pdf mr-1"></i> PDF
</a>
<a href="#" class="text-indigo-600 hover:text-indigo-800 mr-4 inline-flex items-center">
<i class="fas fa-link mr-1"></i> DOI
</a>
<a href="#" class="text-indigo-600 hover:text-indigo-800 inline-flex items-center">
<i class="fas fa-code mr-1"></i> Code
</a>
</div>
</div>
<!-- Publication 2 -->
<div class="publication-card bg-gray-50 p-6 rounded-lg border border-gray-200 fade-in delay-2">
<div class="flex flex-col md:flex-row md:items-center md:justify-between mb-2">
<h3 class="text-xl font-semibold text-indigo-700">Error Mitigation Techniques for NISQ Devices</h3>
<span class="text-sm text-gray-500 mt-1 md:mt-0">Physical Review X, 2022</span>
</div>
<p class="text-gray-600 mb-3">J. Doe, R. Brown, L. Chen</p>
<p class="text-gray-700 mb-4">We introduce a family of error mitigation protocols that significantly improve the reliability of quantum computations on noisy devices. Our techniques require minimal overhead and are compatible with existing quantum hardware.</p>
<div class="flex items-center">
<a href="#" class="text-indigo-600 hover:text-indigo-800 mr-4 inline-flex items-center">
<i class="fas fa-file-pdf mr-1"></i> PDF
</a>
<a href="#" class="text-indigo-600 hover:text-indigo-800 mr-4 inline-flex items-center">
<i class="fas fa-link mr-1"></i> DOI
</a>
<a href="#" class="text-indigo-600 hover:text-indigo-800 inline-flex items-center">
<i class="fas fa-code mr-1"></i> Code
</a>
</div>
</div>
<!-- Publication 3 -->
<div class="publication-card bg-gray-50 p-6 rounded-lg border border-gray-200 fade-in delay-1">
<div class="flex flex-col md:flex-row md:items-center md:justify-between mb-2">
<h3 class="text-xl font-semibold text-indigo-700">Quantum Algorithms for Portfolio Optimization</h3>
<span class="text-sm text-gray-500 mt-1 md:mt-0">Quantum, 2021</span>
</div>
<p class="text-gray-600 mb-3">J. Doe, T. Wilson, K. Lee</p>
<p class="text-gray-700 mb-4">This work demonstrates practical quantum algorithms for financial portfolio optimization problems. We show that even with noisy quantum processors, our methods can provide better solutions than classical approaches for certain problem instances.</p>
<div class="flex items-center">
<a href="#" class="text-indigo-600 hover:text-indigo-800 mr-4 inline-flex items-center">
<i class="fas fa-file-pdf mr-1"></i> PDF
</a>
<a href="#" class="text-indigo-600 hover:text-indigo-800 mr-4 inline-flex items-center">
<i class="fas fa-link mr-1"></i> DOI
</a>
<a href="#" class="text-indigo-600 hover:text-indigo-800 inline-flex items-center">
<i class="fas fa-code mr-1"></i> Code
</a>
</div>
</div>
<!-- Publication 4 -->
<div class="publication-card bg-gray-50 p-6 rounded-lg border border-gray-200 fade-in delay-2">
<div class="flex flex-col md:flex-row md:items-center md:justify-between mb-2">
<h3 class="text-xl font-semibold text-indigo-700">Entanglement Distribution in Quantum Networks</h3>
<span class="text-sm text-gray-500 mt-1 md:mt-0">PRX Quantum, 2020</span>
</div>
<p class="text-gray-600 mb-3">J. Doe, A. Garcia, P. Kumar</p>
<p class="text-gray-700 mb-4">We develop efficient protocols for entanglement distribution in quantum networks with limited resources. Our approach significantly reduces the time required to establish entangled links between distant nodes.</p>
<div class="flex items-center">
<a href="#" class="text-indigo-600 hover:text-indigo-800 mr-4 inline-flex items-center">
<i class="fas fa-file-pdf mr-1"></i> PDF
</a>
<a href="#" class="text-indigo-600 hover:text-indigo-800 mr-4 inline-flex items-center">
<i class="fas fa-link mr-1"></i> DOI
</a>
<a href="#" class="text-indigo-600 hover:text-indigo-800 inline-flex items-center">
<i class="fas fa-code mr-1"></i> Code
</a>
</div>
</div>
</div>
<div class="text-center mt-8 fade-in delay-3">
<a href="#" class="inline-flex items-center text-indigo-600 hover:text-indigo-800 font-medium">
View All Publications <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 bg-indigo-50 px-4 sm:px-6 lg:px-8">
<div class="max-w-6xl mx-auto">
<h2 class="text-3xl font-bold text-center mb-12 fade-in">Get In Touch</h2>
<div class="flex flex-col md:flex-row gap-8">
<div class="md:w-1/2 fade-in delay-1">
<h3 class="text-xl font-semibold mb-4 text-indigo-700">Contact Information</h3>
<p class="text-gray-700 mb-6">I'm always interested in discussing research collaborations, speaking engagements, or answering questions about my work. Feel free to reach out!</p>
<div class="space-y-4">
<div class="flex items-start">
<div class="bg-indigo-100 p-3 rounded-lg mr-4">
<i class="fas fa-envelope text-indigo-600"></i>
</div>
<div>
<h4 class="font-medium">Email</h4>
<a href="mailto:[email protected]" class="text-indigo-600 hover:text-indigo-800">[email protected]</a>
</div>
</div>
<div class="flex items-start">
<div class="bg-indigo-100 p-3 rounded-lg mr-4">
<i class="fas fa-building text-indigo-600"></i>
</div>
<div>
<h4 class="font-medium">Office</h4>
<p class="text-gray-700">Gates Computer Science Building<br>Room 342, Stanford University</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-indigo-100 p-3 rounded-lg mr-4">
<i class="fas fa-share-alt text-indigo-600"></i>
</div>
<div>
<h4 class="font-medium">Social</h4>
<div class="flex space-x-4 mt-1">
<a href="#" class="text-gray-700 hover:text-indigo-600"><i class="fab fa-twitter text-xl"></i></a>
<a href="#" class="text-gray-700 hover:text-indigo-600"><i class="fab fa-linkedin text-xl"></i></a>
<a href="#" class="text-gray-700 hover:text-indigo-600"><i class="fab fa-github text-xl"></i></a>
<a href="#" class="text-gray-700 hover:text-indigo-600"><i class="fab fa-google-scholar text-xl"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="md:w-1/2 fade-in delay-2">
<h3 class="text-xl font-semibold mb-4 text-indigo-700">Send a Message</h3>
<form class="space-y-4">
<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-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500">
</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-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500">
</div>
<div>
<label for="subject" class="block text-sm font-medium text-gray-700 mb-1">Subject</label>
<input type="text" id="subject" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500">
</div>
<div>
<label for="message" class="block text-sm font-medium text-gray-700 mb-1">Message</label>
<textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500"></textarea>
</div>
<button type="submit" class="bg-indigo-600 hover:bg-indigo-700 text-white px-6 py-3 rounded-lg transition w-full md:w-auto">
Send Message
</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-8 px-4 sm:px-6 lg:px-8">
<div class="max-w-6xl mx-auto">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-4 md:mb-0">
<p>© 2023 Jane Doe. All rights reserved.</p>
</div>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-linkedin"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-github"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-google-scholar"></i></a>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('menu-btn').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// Close mobile menu when clicking a link
document.querySelectorAll('#mobile-menu a').forEach(link => {
link.addEventListener('click', function() {
document.getElementById('mobile-menu').classList.add('hidden');
});
});
// Add fade-in class to elements when they come into view
const fadeElements = document.querySelectorAll('.fade-in');
const fadeObserver = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('animate-fadeIn');
}
});
}, { threshold: 0.1 });
fadeElements.forEach(element => {
fadeObserver.observe(element);
});
// Smooth scroll for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
}
});
});
</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=nishanthta/portfolio-template" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |