Spaces:
Running
Running
File size: 31,720 Bytes
fbd282c 6a08336 |
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 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>C4Group</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">
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
colors: {
primary: '#3b82f6',
dark: '#0f172a',
darker: '#020617',
accent: '#7c3aed',
},
animation: {
'pulse-slow': 'pulse 5s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'float': 'float 6s ease-in-out infinite',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-10px)' },
}
}
}
}
}
</script>
<style>
.gradient-text {
background: linear-gradient(90deg, #3b82f6, #7c3aed);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.gradient-text-title {
background: linear-gradient(90deg, #2563eb, #7c3aed);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
background-size: 200% auto;
animation: gradient 3s ease infinite;
}
@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.glass-effect {
background: rgba(15, 23, 42, 0.7);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.hover-scale {
transition: transform 0.3s ease;
}
.hover-scale:hover {
transform: scale(1.03);
}
.news-item::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}
</style>
</head>
<body class="bg-darker text-gray-200 min-h-screen font-sans">
<!-- Navigation -->
<nav class="glass-effect fixed w-full z-50 top-0">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex items-center justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0">
<span class="text-xl font-bold gradient-text">C4 Group</span>
</div>
</div>
<div class="hidden md:block">
<div class="ml-10 flex items-baseline space-x-8">
<a href="#home"
class="text-primary hover:text-accent px-3 py-2 rounded-md text-sm font-bold transition-colors duration-300">Home</a>
<a href="#publications"
class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-bold transition-colors duration-300">Publications</a>
<a href="#people"
class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-bold transition-colors duration-300">People</a>
<a href="https://whluo.github.io/assets/join_us.html"
class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-bold transition-colors duration-300" target="_blank">Join
Us</a>
</div>
</div>
<div class="md:hidden">
<button id="mobile-menu-button" class="text-gray-300 hover:text-white focus:outline-none">
<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden glass-effect">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="#home" class="text-primary block px-3 py-2 rounded-md text-base font-bold">Home</a>
<a href="#publications"
class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-bold">Publications</a>
<a href="#people"
class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-bold">People</a>
<a href="https://whluo.github.io/assets/join_us.html"
class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-bold" target="_blank">Join Us</a>
</div>
</div>
</nav>
<!-- Main Content -->
<main class="pt-20 pb-16">
<!-- Home Section -->
<section id="home" class="py-12 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
<div class="text-center mb-12">
<h1 class="text-5xl md:text-6xl font-bold mb-2 gradient-text-title">C4 Group</h1>
<h2 class="text-2xl md:text-3xl font-bold mb-4">
<span class="text-primary">C</span>reative,
<span class="text-primary">C</span>ontrollable &
<span class="text-primary">C</span>ognitive
<span class="text-primary">C</span>omputing Group
</h2>
</div>
<!-- Hero Image -->
<div class="relative rounded-xl overflow-hidden mb-12 hover-scale transition-all duration-500">
<img src="https://images.unsplash.com/photo-1635070041078-e363dbe005cb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80"
alt="Laboratory equipment" class="w-full h-64 md:h-96 object-cover opacity-90">
<div class="absolute inset-0 bg-gradient-to-t from-darker via-transparent to-transparent"></div>
<div class="absolute bottom-0 left-0 p-8">
<h2 class="text-2xl md:text-3xl font-bold text-white mb-2">Innovating Tomorrow's Technology</h2>
<p class="text-gray-300 max-w-2xl">Explosive innovation in creative, controllable
content generation & Cognitive Advancement.</p>
</div>
</div>
<!-- Group Introduction -->
<div class="grid md:grid-cols-2 gap-8 mb-16">
<div class="glass-effect p-6 rounded-xl hover-scale">
<h2 class="text-2xl font-bold mb-4 text-primary">About Our Group</h2>
<p class="text-gray-300 mb-4">
Founded in 2015, the Advanced Quantum Research Laboratory at [Your University] brings together
interdisciplinary researchers to solve complex problems in quantum information science and
nanotechnology.
</p>
<p class="text-gray-300 mb-4">
Our team consists of 3 faculty members, 8 postdoctoral researchers, and 15 graduate students
working across multiple projects funded by NSF, DOE, and private foundations.
</p>
<div class="flex space-x-4 mt-6">
<div class="text-center">
<div class="text-3xl font-bold text-accent">15+</div>
<div class="text-sm text-gray-400">Research Papers</div>
</div>
<div class="text-center">
<div class="text-3xl font-bold text-accent">8</div>
<div class="text-sm text-gray-400">Patents</div>
</div>
<div class="text-center">
<div class="text-3xl font-bold text-accent">8</div>
<div class="text-sm text-gray-400">Patents</div>
</div>
<div class="text-center">
<div class="text-3xl font-bold text-accent">8</div>
<div class="text-sm text-gray-400">Patents</div>
</div>
</div>
</div>
<div class="glass-effect p-6 rounded-xl hover-scale">
<h2 class="text-2xl font-bold mb-4 text-primary">Research Focus</h2>
<div class="space-y-4">
<div class="flex items-start">
<div class="text-primary mr-3 mt-1">
<i class="fas fa-brain fa-lg"></i>
</div>
<div>
<h3 class="font-semibold">Large Models</h3>
<p class="text-gray-400 text-sm">Developing and optimizing foundation models for various
tasks</p>
</div>
</div>
<div class="flex items-start">
<div class="text-primary mr-3 mt-1">
<i class="fas fa-image fa-lg"></i>
</div>
<div>
<h3 class="font-semibold">AIGC</h3>
<p class="text-gray-400 text-sm">Image, video and 3D generation using AI</p>
</div>
</div>
<div class="flex items-start">
<div class="text-primary mr-3 mt-1">
<i class="fas fa-wrench fa-lg"></i>
</div>
<div>
<h3 class="font-semibold">Content Restoration</h3>
<p class="text-gray-400 text-sm">Enhancing and restoring low-quality media content</p>
</div>
</div>
</div>
</div>
</div>
<!-- News Section -->
<div class="mb-16">
<h2 class="text-3xl font-bold mb-8 text-center gradient-text">Latest News</h2>
<div class="glass-effect p-6 rounded-xl hover-scale">
<div class="space-y-4">
<div class="flex items-start">
<div class="text-gray-400 text-sm w-24 flex-shrink-0">2025 June</div>
<div class="text-gray-300">Our paper "Title" was accepted to Conference Name.</div>
</div>
<div class="flex items-start">
<div class="text-gray-400 text-sm w-24 flex-shrink-0">2025 May</div>
<div class="text-gray-300">Team member presented work at Workshop Name.</div>
</div>
<div class="flex items-start">
<div class="text-gray-400 text-sm w-24 flex-shrink-0">2025 April</div>
<div class="text-gray-300">New collaboration started with Industry Partner.</div>
</div>
</div>
</div>
</div>
<!-- Publications -->
<div id="publications" class="mb-16">
<h2 class="text-3xl font-bold mb-8 text-center gradient-text">Publications</h2>
<div class="space-y-6">
<div class="glass-effect p-6 rounded-xl hover-scale">
<div class="text-5xl text-primary mb-4">
<i class="fas fa-file-alt"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Paper Title 1</h3>
<p class="text-gray-300 text-sm">Authors, Conference/Journal, Year</p>
</div>
<div class="glass-effect p-6 rounded-xl hover-scale">
<div class="text-5xl text-primary mb-4">
<i class="fas fa-file-alt"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Paper Title 2</h3>
<p class="text-gray-300 text-sm">Authors, Conference/Journal, Year</p>
</div>
<div class="glass-effect p-6 rounded-xl hover-scale">
<div class="text-5xl text-primary mb-4">
<i class="fas fa-file-alt"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Paper Title 3</h3>
<p class="text-gray-300 text-sm">Authors, Conference/Journal, Year</p>
</div>
</div>
<div class="text-center mt-8">
<a href="#"
class="inline-flex items-center px-6 py-3 border border-primary text-primary rounded-full hover:bg-primary hover:text-white transition-colors duration-300">
View Full Publications <i class="fas fa-book ml-2"></i>
</a>
</div>
</div>
<!-- Photo Gallery Placeholder -->
<div class="mb-16">
<h2 class="text-3xl font-bold mb-8 text-center gradient-text">Group Activities</h2>
<div class="grid grid-cols-2 md:grid-cols-4 gap-4">
<div class="rounded-xl overflow-hidden h-40 hover:scale-105 transition-transform duration-300">
<img src="https://images.unsplash.com/photo-1563986768609-322da13575f3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80"
alt="Lab equipment" class="w-full h-full object-cover">
</div>
<div class="rounded-xl overflow-hidden h-40 hover:scale-105 transition-transform duration-300">
<img src="https://images.unsplash.com/photo-1555529669-e69e7aa0ba9a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80"
alt="Researchers working" class="w-full h-full object-cover">
</div>
<div class="rounded-xl overflow-hidden h-40 hover:scale-105 transition-transform duration-300">
<img src="https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80"
alt="Microscope" class="w-full h-full object-cover">
</div>
<div class="rounded-xl overflow-hidden h-40 hover:scale-105 transition-transform duration-300">
<img src="https://images.unsplash.com/photo-1532094349884-543bc11b234d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80"
alt="Quantum computing" class="w-full h-full object-cover">
</div>
</div>
<div class="text-center mt-8">
<a href="#"
class="inline-flex items-center px-6 py-3 border border-primary text-primary rounded-full hover:bg-primary hover:text-white transition-colors duration-300">
View More Activities <i class="fas fa-images ml-2"></i>
</a>
</div>
</div>
</section>
<!-- People Section -->
<section id="people" class="py-12 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto bg-dark/50">
<h2 class="text-3xl font-bold mb-12 text-center gradient-text">Our Group</h2>
<div class="mb-16">
<h3 class="text-2xl font-semibold mb-6 text-primary border-b border-gray-700 pb-2 px-4">Group Leader</h3>
<div class="flex justify-center">
<div class="glass-effect p-8 md:px-8 rounded-xl hover-scale w-full">
<div class="flex flex-col md:flex-row gap-6">
<div class="flex flex-col items-center md:items-start md:w-1/4 md:pl-12">
<div
class="w-32 h-32 rounded-full overflow-hidden mb-4 border-2 border-primary/30 bg-gray-700 flex items-center justify-center">
<i class="fas fa-user fa-3x text-gray-400"></i>
</div>
<h4 class="text-xl font-bold">Prof. Wenhan Luo</h4>
<p class="text-gray-400 text-sm mb-4">Principal Investigator</p>
<div class="flex space-x-8">
<a href="mailto:[email protected]" class="text-gray-400 hover:text-primary transition-colors duration-300" title="Email">
<i class="fas fa-envelope fa-lg"></i>
</a>
<a href="https://whluo.github.io" target="_blank" class="text-gray-400 hover:text-primary transition-colors duration-300" title="Homepage">
<i class="fas fa-home fa-lg"></i>
</a>
<a href="https://scholar.google.com.hk/citations?user=g20Q12MAAAAJ" target="_blank" class="text-gray-400 hover:text-primary transition-colors duration-300" title="Google Scholar">
<i class="fas fa-graduation-cap fa-lg"></i>
</a>
</div>
</div>
<div class="md:w-2/3">
<p class="text-gray-300 mb-4">Associate Professor at HKUST, previously at Sun Yat-sen University. Former research scientist at Tencent and Amazon, developing deep learning solutions for products like WeChat, QQ, and Tencent Video.</p>
<p class="text-gray-300 mb-4">Published 100+ papers in top venues (CVPR, ICML, NeurIPS, etc.). CVPR 2019 Best Paper Finalist, 2022 ACM China Rising Star Award, Top 2% Scientist worldwide (2023-2024).</p>
<p class="text-gray-300">Serves as Senior Area Editor for IEEE SPL, Associate Editor for IEEE TIP, and Area Chair for NeurIPS/ICML/IJCAI.</p>
</div>
</div>
</div>
</div>
</div>
<div class="mb-16">
<h3 class="text-2xl font-semibold mb-6 text-primary border-b border-gray-700 pb-2">Postdoctoral Researchers</h3>
<div class="grid md:grid-cols-3 gap-6">
<div class="glass-effect p-4 rounded-xl hover-scale">
<div class="flex flex-col items-center">
<div class="w-20 h-20 rounded-full overflow-hidden mb-3 border-2 border-primary/30">
<div class="w-full h-full bg-gray-700 flex items-center justify-center">
<i class="fas fa-user text-gray-400"></i>
</div>
</div>
<h4 class="font-semibold text-center">Tao Wang</h4>
<p class="text-gray-400 text-xs text-center">Low-level Vision</p>
</div>
</div>
</div>
</div>
<div class="mb-16">
<h3 class="text-2xl font-semibold mb-6 text-primary border-b border-gray-700 pb-2">Research Postgraduate Students</h3>
<div class="grid md:grid-cols-4 gap-6">
<div class="glass-effect p-4 rounded-xl hover-scale">
<div class="flex flex-col items-center">
<div class="w-20 h-20 rounded-full overflow-hidden mb-3 border-2 border-primary/30">
<div class="w-full h-full bg-gray-700 flex items-center justify-center">
<i class="fas fa-user text-gray-400"></i>
</div>
</div>
<h4 class="font-semibold text-center">Zhiqiang Wang</h4>
<p class="text-gray-400 text-xs text-center">(2024 Fall - )</p>
<p class="text-gray-400 text-xs text-center">***research area***</p>
</div>
</div>
<div class="glass-effect p-4 rounded-xl hover-scale">
<div class="flex flex-col items-center">
<div class="w-20 h-20 rounded-full overflow-hidden mb-3 border-2 border-primary/30">
<div class="w-full h-full bg-gray-700 flex items-center justify-center">
<i class="fas fa-user text-gray-400"></i>
</div>
</div>
<h4 class="font-semibold text-center">Yatian Wang</h4>
<p class="text-gray-400 text-xs text-center">(2025 Spring - )</p>
<p class="text-gray-400 text-xs text-center">***research area***</p>
</div>
</div>
<div class="glass-effect p-4 rounded-xl hover-scale">
<div class="flex flex-col items-center">
<div class="w-20 h-20 rounded-full overflow-hidden mb-3 border-2 border-primary/30">
<div class="w-full h-full bg-gray-700 flex items-center justify-center">
<i class="fas fa-user text-gray-400"></i>
</div>
</div>
<h4 class="font-semibold text-center">Gongye Liu</h4>
<p class="text-gray-400 text-xs text-center">(2025 Fall - )</p>
<p class="text-gray-400 text-xs text-center">***research area***</p>
</div>
</div>
<div class="glass-effect p-4 rounded-xl hover-scale">
<div class="flex flex-col items-center">
<div class="w-20 h-20 rounded-full overflow-hidden mb-3 border-2 border-primary/30">
<div class="w-full h-full bg-gray-700 flex items-center justify-center">
<i class="fas fa-user text-gray-400"></i>
</div>
</div>
<h4 class="font-semibold text-center">Zixuan Ye</h4>
<p class="text-gray-400 text-xs text-center">(2025 Fall - )</p>
<p class="text-gray-400 text-xs text-center">Video Generation & Edit</p>
</div>
</div>
<div class="glass-effect p-4 rounded-xl hover-scale">
<div class="flex flex-col items-center">
<div class="w-20 h-20 rounded-full overflow-hidden mb-3 border-2 border-primary/30">
<div class="w-full h-full bg-gray-700 flex items-center justify-center">
<i class="fas fa-user text-gray-400"></i>
</div>
</div>
<h4 class="font-semibold text-center">Haoqiang Guo</h4>
<p class="text-gray-400 text-xs text-center">(2025 Fall - )</p>
<p class="text-gray-400 text-xs text-center">***research area***</p>
</div>
</div>
<div class="glass-effect p-4 rounded-xl hover-scale">
<div class="flex flex-col items-center">
<div class="w-20 h-20 rounded-full overflow-hidden mb-3 border-2 border-primary/30">
<div class="w-full h-full bg-gray-700 flex items-center justify-center">
<i class="fas fa-user text-gray-400"></i>
</div>
</div>
<h4 class="font-semibold text-center">Zhizhou Zhong</h4>
<p class="text-gray-400 text-xs text-center">(2025 Fall - )</p>
<p class="text-gray-400 text-xs text-center">Digital Human</p>
</div>
</div>
</div>
</div>
<div class="mb-16">
<h3 class="text-2xl font-semibold mb-6 text-primary border-b border-gray-700 pb-2">Research Assistant
</h3>
<div class="grid md:grid-cols-4 gap-6">
<div class="glass-effect p-4 rounded-xl hover-scale">
<div class="flex flex-col items-center">
<div class="w-20 h-20 rounded-full overflow-hidden mb-3 border-2 border-primary/30">
<div class="w-full h-full bg-gray-700 flex items-center justify-center">
<i class="fas fa-user text-gray-400"></i>
</div>
</div>
<h4 class="font-semibold text-center">Yunxin Li</h4>
</div>
</div>
</div>
</div>
<div class="mb-16">
<h3 class="text-2xl font-semibold mb-6 text-primary border-b border-gray-700 pb-2">Visiting
Student/Research Intern</h3>
<div class="grid md:grid-cols-4 gap-6">
<div class="glass-effect p-4 rounded-xl hover-scale">
<div class="flex flex-col items-center">
<div class="w-20 h-20 rounded-full overflow-hidden mb-3 border-2 border-primary/30">
<div class="w-full h-full bg-gray-700 flex items-center justify-center">
<i class="fas fa-user text-gray-400"></i>
</div>
</div>
<h4 class="font-semibold text-center">Zhe Kong</h4>
<p class="text-gray-400 text-xs text-center">(2023 Fall - )</p>
<p class="text-gray-400 text-xs text-center">Video Generation</p>
</div>
</div>
<div class="glass-effect p-4 rounded-xl hover-scale">
<div class="flex flex-col items-center">
<div class="w-20 h-20 rounded-full overflow-hidden mb-3 border-2 border-primary/30">
<div class="w-full h-full bg-gray-700 flex items-center justify-center">
<i class="fas fa-user text-gray-400"></i>
</div>
</div>
<h4 class="font-semibold text-center">Zebin He</h4>
<p class="text-gray-400 text-xs text-center">(2023 Fall - )</p>
<p class="text-gray-400 text-xs text-center">3D Texture Generation</p>
</div>
</div>
<div class="glass-effect p-4 rounded-xl hover-scale">
<div class="flex flex-col items-center">
<div class="w-20 h-20 rounded-full overflow-hidden mb-3 border-2 border-primary/30">
<div class="w-full h-full bg-gray-700 flex items-center justify-center">
<i class="fas fa-user text-gray-400"></i>
</div>
</div>
<h4 class="font-semibold text-center">Tao Zhou</h4>
<p class="text-gray-400 text-xs text-center">(2025/01 - 2025/03)</p>
</div>
</div>
<div class="glass-effect p-4 rounded-xl hover-scale">
<div class="flex flex-col items-center">
<div class="w-20 h-20 rounded-full overflow-hidden mb-3 border-2 border-primary/30">
<div class="w-full h-full bg-gray-700 flex items-center justify-center">
<i class="fas fa-user text-gray-400"></i>
</div>
</div>
<h4 class="font-semibold text-center">Zipeng Wang</h4>
<p class="text-gray-400 text-xs text-center">(2025/01 - 2025/05)</p>
</div>
</div>
</div>
</div>
<script>
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
window.scrollTo({
top: target.offsetTop - 80, // Adjust for fixed header
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=ZebinHe/c4g-homepage-v1" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>
|