ZebinHe commited on
Commit
fbd282c
·
verified ·
1 Parent(s): 6a08336

跳转到publications的时候页面有些太偏上了,上面冻结的标题栏快把publications的字挡住了 - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +552 -18
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: C4g Homepage V1
3
- emoji: 🦀
4
- colorFrom: pink
5
- colorTo: blue
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: c4g-homepage-v1
3
+ emoji: 🐳
4
+ colorFrom: red
5
+ colorTo: purple
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,553 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+
4
+ <head>
5
+ <meta charset="UTF-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <title>C4Group</title>
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
10
+ <script>
11
+ tailwind.config = {
12
+ darkMode: 'class',
13
+ theme: {
14
+ extend: {
15
+ colors: {
16
+ primary: '#3b82f6',
17
+ dark: '#0f172a',
18
+ darker: '#020617',
19
+ accent: '#7c3aed',
20
+ },
21
+ animation: {
22
+ 'pulse-slow': 'pulse 5s cubic-bezier(0.4, 0, 0.6, 1) infinite',
23
+ 'float': 'float 6s ease-in-out infinite',
24
+ },
25
+ keyframes: {
26
+ float: {
27
+ '0%, 100%': { transform: 'translateY(0)' },
28
+ '50%': { transform: 'translateY(-10px)' },
29
+ }
30
+ }
31
+ }
32
+ }
33
+ }
34
+ </script>
35
+ <style>
36
+ .gradient-text {
37
+ background: linear-gradient(90deg, #3b82f6, #7c3aed);
38
+ -webkit-background-clip: text;
39
+ background-clip: text;
40
+ color: transparent;
41
+ }
42
+
43
+ .gradient-text-title {
44
+ background: linear-gradient(90deg, #2563eb, #7c3aed);
45
+ -webkit-background-clip: text;
46
+ background-clip: text;
47
+ color: transparent;
48
+ background-size: 200% auto;
49
+ animation: gradient 3s ease infinite;
50
+ }
51
+
52
+ @keyframes gradient {
53
+ 0% {
54
+ background-position: 0% 50%;
55
+ }
56
+
57
+ 50% {
58
+ background-position: 100% 50%;
59
+ }
60
+
61
+ 100% {
62
+ background-position: 0% 50%;
63
+ }
64
+ }
65
+
66
+ .glass-effect {
67
+ background: rgba(15, 23, 42, 0.7);
68
+ backdrop-filter: blur(10px);
69
+ -webkit-backdrop-filter: blur(10px);
70
+ border: 1px solid rgba(255, 255, 255, 0.1);
71
+ }
72
+
73
+ .hover-scale {
74
+ transition: transform 0.3s ease;
75
+ }
76
+
77
+ .hover-scale:hover {
78
+ transform: scale(1.03);
79
+ }
80
+
81
+ .news-item::after {
82
+ content: '';
83
+ position: absolute;
84
+ bottom: 0;
85
+ left: 0;
86
+ width: 100%;
87
+ height: 1px;
88
+ background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
89
+ }
90
+ </style>
91
+ </head>
92
+
93
+ <body class="bg-darker text-gray-200 min-h-screen font-sans">
94
+ <!-- Navigation -->
95
+ <nav class="glass-effect fixed w-full z-50 top-0">
96
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
97
+ <div class="flex items-center justify-between h-16">
98
+ <div class="flex items-center">
99
+ <div class="flex-shrink-0">
100
+ <span class="text-xl font-bold gradient-text">C4 Group</span>
101
+ </div>
102
+ </div>
103
+ <div class="hidden md:block">
104
+ <div class="ml-10 flex items-baseline space-x-8">
105
+ <a href="#home"
106
+ class="text-primary hover:text-accent px-3 py-2 rounded-md text-sm font-bold transition-colors duration-300">Home</a>
107
+ <a href="#publications"
108
+ class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-bold transition-colors duration-300">Publications</a>
109
+ <a href="#people"
110
+ class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-bold transition-colors duration-300">People</a>
111
+ <a href="https://whluo.github.io/assets/join_us.html"
112
+ class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-bold transition-colors duration-300" target="_blank">Join
113
+ Us</a>
114
+ </div>
115
+ </div>
116
+ <div class="md:hidden">
117
+ <button id="mobile-menu-button" class="text-gray-300 hover:text-white focus:outline-none">
118
+ <svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
119
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
120
+ d="M4 6h16M4 12h16M4 18h16"></path>
121
+ </svg>
122
+ </button>
123
+ </div>
124
+ </div>
125
+ </div>
126
+
127
+ <!-- Mobile menu -->
128
+ <div id="mobile-menu" class="hidden md:hidden glass-effect">
129
+ <div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
130
+ <a href="#home" class="text-primary block px-3 py-2 rounded-md text-base font-bold">Home</a>
131
+ <a href="#publications"
132
+ class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-bold">Publications</a>
133
+ <a href="#people"
134
+ class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-bold">People</a>
135
+ <a href="https://whluo.github.io/assets/join_us.html"
136
+ class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-bold" target="_blank">Join Us</a>
137
+ </div>
138
+ </div>
139
+ </nav>
140
+
141
+ <!-- Main Content -->
142
+ <main class="pt-20 pb-16">
143
+ <!-- Home Section -->
144
+ <section id="home" class="py-12 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
145
+ <div class="text-center mb-12">
146
+ <h1 class="text-5xl md:text-6xl font-bold mb-2 gradient-text-title">C4 Group</h1>
147
+ <h2 class="text-2xl md:text-3xl font-bold mb-4">
148
+ <span class="text-primary">C</span>reative,
149
+ <span class="text-primary">C</span>ontrollable &
150
+ <span class="text-primary">C</span>ognitive
151
+ <span class="text-primary">C</span>omputing Group
152
+ </h2>
153
+ </div>
154
+
155
+ <!-- Hero Image -->
156
+ <div class="relative rounded-xl overflow-hidden mb-12 hover-scale transition-all duration-500">
157
+ <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"
158
+ alt="Laboratory equipment" class="w-full h-64 md:h-96 object-cover opacity-90">
159
+ <div class="absolute inset-0 bg-gradient-to-t from-darker via-transparent to-transparent"></div>
160
+ <div class="absolute bottom-0 left-0 p-8">
161
+ <h2 class="text-2xl md:text-3xl font-bold text-white mb-2">Innovating Tomorrow's Technology</h2>
162
+ <p class="text-gray-300 max-w-2xl">Explosive innovation in creative, controllable
163
+ content generation & Cognitive Advancement.</p>
164
+ </div>
165
+ </div>
166
+
167
+ <!-- Group Introduction -->
168
+ <div class="grid md:grid-cols-2 gap-8 mb-16">
169
+ <div class="glass-effect p-6 rounded-xl hover-scale">
170
+ <h2 class="text-2xl font-bold mb-4 text-primary">About Our Group</h2>
171
+ <p class="text-gray-300 mb-4">
172
+ Founded in 2015, the Advanced Quantum Research Laboratory at [Your University] brings together
173
+ interdisciplinary researchers to solve complex problems in quantum information science and
174
+ nanotechnology.
175
+ </p>
176
+ <p class="text-gray-300 mb-4">
177
+ Our team consists of 3 faculty members, 8 postdoctoral researchers, and 15 graduate students
178
+ working across multiple projects funded by NSF, DOE, and private foundations.
179
+ </p>
180
+ <div class="flex space-x-4 mt-6">
181
+ <div class="text-center">
182
+ <div class="text-3xl font-bold text-accent">15+</div>
183
+ <div class="text-sm text-gray-400">Research Papers</div>
184
+ </div>
185
+ <div class="text-center">
186
+ <div class="text-3xl font-bold text-accent">8</div>
187
+ <div class="text-sm text-gray-400">Patents</div>
188
+ </div>
189
+ <div class="text-center">
190
+ <div class="text-3xl font-bold text-accent">8</div>
191
+ <div class="text-sm text-gray-400">Patents</div>
192
+ </div>
193
+ <div class="text-center">
194
+ <div class="text-3xl font-bold text-accent">8</div>
195
+ <div class="text-sm text-gray-400">Patents</div>
196
+ </div>
197
+ </div>
198
+ </div>
199
+ <div class="glass-effect p-6 rounded-xl hover-scale">
200
+ <h2 class="text-2xl font-bold mb-4 text-primary">Research Focus</h2>
201
+ <div class="space-y-4">
202
+ <div class="flex items-start">
203
+ <div class="text-primary mr-3 mt-1">
204
+ <i class="fas fa-brain fa-lg"></i>
205
+ </div>
206
+ <div>
207
+ <h3 class="font-semibold">Large Models</h3>
208
+ <p class="text-gray-400 text-sm">Developing and optimizing foundation models for various
209
+ tasks</p>
210
+ </div>
211
+ </div>
212
+ <div class="flex items-start">
213
+ <div class="text-primary mr-3 mt-1">
214
+ <i class="fas fa-image fa-lg"></i>
215
+ </div>
216
+ <div>
217
+ <h3 class="font-semibold">AIGC</h3>
218
+ <p class="text-gray-400 text-sm">Image, video and 3D generation using AI</p>
219
+ </div>
220
+ </div>
221
+ <div class="flex items-start">
222
+ <div class="text-primary mr-3 mt-1">
223
+ <i class="fas fa-wrench fa-lg"></i>
224
+ </div>
225
+ <div>
226
+ <h3 class="font-semibold">Content Restoration</h3>
227
+ <p class="text-gray-400 text-sm">Enhancing and restoring low-quality media content</p>
228
+ </div>
229
+ </div>
230
+ </div>
231
+ </div>
232
+ </div>
233
+
234
+ <!-- News Section -->
235
+ <div class="mb-16">
236
+ <h2 class="text-3xl font-bold mb-8 text-center gradient-text">Latest News</h2>
237
+ <div class="glass-effect p-6 rounded-xl hover-scale">
238
+ <div class="space-y-4">
239
+ <div class="flex items-start">
240
+ <div class="text-gray-400 text-sm w-24 flex-shrink-0">2025 June</div>
241
+ <div class="text-gray-300">Our paper "Title" was accepted to Conference Name.</div>
242
+ </div>
243
+ <div class="flex items-start">
244
+ <div class="text-gray-400 text-sm w-24 flex-shrink-0">2025 May</div>
245
+ <div class="text-gray-300">Team member presented work at Workshop Name.</div>
246
+ </div>
247
+ <div class="flex items-start">
248
+ <div class="text-gray-400 text-sm w-24 flex-shrink-0">2025 April</div>
249
+ <div class="text-gray-300">New collaboration started with Industry Partner.</div>
250
+ </div>
251
+ </div>
252
+ </div>
253
+ </div>
254
+
255
+ <!-- Publications -->
256
+ <div id="publications" class="mb-16">
257
+ <h2 class="text-3xl font-bold mb-8 text-center gradient-text">Publications</h2>
258
+ <div class="space-y-6">
259
+ <div class="glass-effect p-6 rounded-xl hover-scale">
260
+ <div class="text-5xl text-primary mb-4">
261
+ <i class="fas fa-file-alt"></i>
262
+ </div>
263
+ <h3 class="text-xl font-semibold mb-2">Paper Title 1</h3>
264
+ <p class="text-gray-300 text-sm">Authors, Conference/Journal, Year</p>
265
+ </div>
266
+ <div class="glass-effect p-6 rounded-xl hover-scale">
267
+ <div class="text-5xl text-primary mb-4">
268
+ <i class="fas fa-file-alt"></i>
269
+ </div>
270
+ <h3 class="text-xl font-semibold mb-2">Paper Title 2</h3>
271
+ <p class="text-gray-300 text-sm">Authors, Conference/Journal, Year</p>
272
+ </div>
273
+ <div class="glass-effect p-6 rounded-xl hover-scale">
274
+ <div class="text-5xl text-primary mb-4">
275
+ <i class="fas fa-file-alt"></i>
276
+ </div>
277
+ <h3 class="text-xl font-semibold mb-2">Paper Title 3</h3>
278
+ <p class="text-gray-300 text-sm">Authors, Conference/Journal, Year</p>
279
+ </div>
280
+ </div>
281
+ <div class="text-center mt-8">
282
+ <a href="#"
283
+ 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">
284
+ View Full Publications <i class="fas fa-book ml-2"></i>
285
+ </a>
286
+ </div>
287
+ </div>
288
+
289
+ <!-- Photo Gallery Placeholder -->
290
+ <div class="mb-16">
291
+ <h2 class="text-3xl font-bold mb-8 text-center gradient-text">Group Activities</h2>
292
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-4">
293
+ <div class="rounded-xl overflow-hidden h-40 hover:scale-105 transition-transform duration-300">
294
+ <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"
295
+ alt="Lab equipment" class="w-full h-full object-cover">
296
+ </div>
297
+ <div class="rounded-xl overflow-hidden h-40 hover:scale-105 transition-transform duration-300">
298
+ <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"
299
+ alt="Researchers working" class="w-full h-full object-cover">
300
+ </div>
301
+ <div class="rounded-xl overflow-hidden h-40 hover:scale-105 transition-transform duration-300">
302
+ <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"
303
+ alt="Microscope" class="w-full h-full object-cover">
304
+ </div>
305
+ <div class="rounded-xl overflow-hidden h-40 hover:scale-105 transition-transform duration-300">
306
+ <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"
307
+ alt="Quantum computing" class="w-full h-full object-cover">
308
+ </div>
309
+ </div>
310
+ <div class="text-center mt-8">
311
+ <a href="#"
312
+ 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">
313
+ View More Activities <i class="fas fa-images ml-2"></i>
314
+ </a>
315
+ </div>
316
+ </div>
317
+ </section>
318
+
319
+ <!-- People Section -->
320
+ <section id="people" class="py-12 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto bg-dark/50">
321
+ <h2 class="text-3xl font-bold mb-12 text-center gradient-text">Our Group</h2>
322
+
323
+ <div class="mb-16">
324
+ <h3 class="text-2xl font-semibold mb-6 text-primary border-b border-gray-700 pb-2 px-4">Group Leader</h3>
325
+ <div class="flex justify-center">
326
+ <div class="glass-effect p-8 md:px-8 rounded-xl hover-scale w-full">
327
+ <div class="flex flex-col md:flex-row gap-6">
328
+ <div class="flex flex-col items-center md:items-start md:w-1/4 md:pl-12">
329
+ <div
330
+ class="w-32 h-32 rounded-full overflow-hidden mb-4 border-2 border-primary/30 bg-gray-700 flex items-center justify-center">
331
+ <i class="fas fa-user fa-3x text-gray-400"></i>
332
+ </div>
333
+ <h4 class="text-xl font-bold">Prof. Wenhan Luo</h4>
334
+ <p class="text-gray-400 text-sm mb-4">Principal Investigator</p>
335
+ <div class="flex space-x-8">
336
+ <a href="mailto:[email protected]" class="text-gray-400 hover:text-primary transition-colors duration-300" title="Email">
337
+ <i class="fas fa-envelope fa-lg"></i>
338
+ </a>
339
+
340
+ <a href="https://whluo.github.io" target="_blank" class="text-gray-400 hover:text-primary transition-colors duration-300" title="Homepage">
341
+ <i class="fas fa-home fa-lg"></i>
342
+ </a>
343
+
344
+ <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">
345
+ <i class="fas fa-graduation-cap fa-lg"></i>
346
+ </a>
347
+
348
+ </div>
349
+ </div>
350
+ <div class="md:w-2/3">
351
+ <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>
352
+ <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>
353
+ <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>
354
+ </div>
355
+ </div>
356
+ </div>
357
+ </div>
358
+ </div>
359
+
360
+ <div class="mb-16">
361
+ <h3 class="text-2xl font-semibold mb-6 text-primary border-b border-gray-700 pb-2">Postdoctoral Researchers</h3>
362
+ <div class="grid md:grid-cols-3 gap-6">
363
+ <div class="glass-effect p-4 rounded-xl hover-scale">
364
+ <div class="flex flex-col items-center">
365
+ <div class="w-20 h-20 rounded-full overflow-hidden mb-3 border-2 border-primary/30">
366
+ <div class="w-full h-full bg-gray-700 flex items-center justify-center">
367
+ <i class="fas fa-user text-gray-400"></i>
368
+ </div>
369
+ </div>
370
+ <h4 class="font-semibold text-center">Tao Wang</h4>
371
+ <p class="text-gray-400 text-xs text-center">Low-level Vision</p>
372
+ </div>
373
+ </div>
374
+
375
+
376
+ </div>
377
+ </div>
378
+
379
+ <div class="mb-16">
380
+ <h3 class="text-2xl font-semibold mb-6 text-primary border-b border-gray-700 pb-2">Research Postgraduate Students</h3>
381
+ <div class="grid md:grid-cols-4 gap-6">
382
+ <div class="glass-effect p-4 rounded-xl hover-scale">
383
+ <div class="flex flex-col items-center">
384
+ <div class="w-20 h-20 rounded-full overflow-hidden mb-3 border-2 border-primary/30">
385
+ <div class="w-full h-full bg-gray-700 flex items-center justify-center">
386
+ <i class="fas fa-user text-gray-400"></i>
387
+ </div>
388
+ </div>
389
+ <h4 class="font-semibold text-center">Zhiqiang Wang</h4>
390
+ <p class="text-gray-400 text-xs text-center">(2024 Fall - )</p>
391
+ <p class="text-gray-400 text-xs text-center">***research area***</p>
392
+ </div>
393
+ </div>
394
+
395
+ <div class="glass-effect p-4 rounded-xl hover-scale">
396
+ <div class="flex flex-col items-center">
397
+ <div class="w-20 h-20 rounded-full overflow-hidden mb-3 border-2 border-primary/30">
398
+ <div class="w-full h-full bg-gray-700 flex items-center justify-center">
399
+ <i class="fas fa-user text-gray-400"></i>
400
+ </div>
401
+ </div>
402
+ <h4 class="font-semibold text-center">Yatian Wang</h4>
403
+ <p class="text-gray-400 text-xs text-center">(2025 Spring - )</p>
404
+ <p class="text-gray-400 text-xs text-center">***research area***</p>
405
+ </div>
406
+ </div>
407
+
408
+ <div class="glass-effect p-4 rounded-xl hover-scale">
409
+ <div class="flex flex-col items-center">
410
+ <div class="w-20 h-20 rounded-full overflow-hidden mb-3 border-2 border-primary/30">
411
+ <div class="w-full h-full bg-gray-700 flex items-center justify-center">
412
+ <i class="fas fa-user text-gray-400"></i>
413
+ </div>
414
+ </div>
415
+ <h4 class="font-semibold text-center">Gongye Liu</h4>
416
+ <p class="text-gray-400 text-xs text-center">(2025 Fall - )</p>
417
+ <p class="text-gray-400 text-xs text-center">***research area***</p>
418
+ </div>
419
+ </div>
420
+
421
+ <div class="glass-effect p-4 rounded-xl hover-scale">
422
+ <div class="flex flex-col items-center">
423
+ <div class="w-20 h-20 rounded-full overflow-hidden mb-3 border-2 border-primary/30">
424
+ <div class="w-full h-full bg-gray-700 flex items-center justify-center">
425
+ <i class="fas fa-user text-gray-400"></i>
426
+ </div>
427
+ </div>
428
+ <h4 class="font-semibold text-center">Zixuan Ye</h4>
429
+ <p class="text-gray-400 text-xs text-center">(2025 Fall - )</p>
430
+ <p class="text-gray-400 text-xs text-center">Video Generation & Edit</p>
431
+ </div>
432
+ </div>
433
+
434
+ <div class="glass-effect p-4 rounded-xl hover-scale">
435
+ <div class="flex flex-col items-center">
436
+ <div class="w-20 h-20 rounded-full overflow-hidden mb-3 border-2 border-primary/30">
437
+ <div class="w-full h-full bg-gray-700 flex items-center justify-center">
438
+ <i class="fas fa-user text-gray-400"></i>
439
+ </div>
440
+ </div>
441
+ <h4 class="font-semibold text-center">Haoqiang Guo</h4>
442
+ <p class="text-gray-400 text-xs text-center">(2025 Fall - )</p>
443
+ <p class="text-gray-400 text-xs text-center">***research area***</p>
444
+ </div>
445
+ </div>
446
+
447
+ <div class="glass-effect p-4 rounded-xl hover-scale">
448
+ <div class="flex flex-col items-center">
449
+ <div class="w-20 h-20 rounded-full overflow-hidden mb-3 border-2 border-primary/30">
450
+ <div class="w-full h-full bg-gray-700 flex items-center justify-center">
451
+ <i class="fas fa-user text-gray-400"></i>
452
+ </div>
453
+ </div>
454
+ <h4 class="font-semibold text-center">Zhizhou Zhong</h4>
455
+ <p class="text-gray-400 text-xs text-center">(2025 Fall - )</p>
456
+ <p class="text-gray-400 text-xs text-center">Digital Human</p>
457
+ </div>
458
+ </div>
459
+ </div>
460
+ </div>
461
+
462
+ <div class="mb-16">
463
+ <h3 class="text-2xl font-semibold mb-6 text-primary border-b border-gray-700 pb-2">Research Assistant
464
+ </h3>
465
+ <div class="grid md:grid-cols-4 gap-6">
466
+ <div class="glass-effect p-4 rounded-xl hover-scale">
467
+ <div class="flex flex-col items-center">
468
+ <div class="w-20 h-20 rounded-full overflow-hidden mb-3 border-2 border-primary/30">
469
+ <div class="w-full h-full bg-gray-700 flex items-center justify-center">
470
+ <i class="fas fa-user text-gray-400"></i>
471
+ </div>
472
+ </div>
473
+ <h4 class="font-semibold text-center">Yunxin Li</h4>
474
+ </div>
475
+ </div>
476
+ </div>
477
+ </div>
478
+
479
+ <div class="mb-16">
480
+ <h3 class="text-2xl font-semibold mb-6 text-primary border-b border-gray-700 pb-2">Visiting
481
+ Student/Research Intern</h3>
482
+
483
+ <div class="grid md:grid-cols-4 gap-6">
484
+ <div class="glass-effect p-4 rounded-xl hover-scale">
485
+ <div class="flex flex-col items-center">
486
+ <div class="w-20 h-20 rounded-full overflow-hidden mb-3 border-2 border-primary/30">
487
+ <div class="w-full h-full bg-gray-700 flex items-center justify-center">
488
+ <i class="fas fa-user text-gray-400"></i>
489
+ </div>
490
+ </div>
491
+ <h4 class="font-semibold text-center">Zhe Kong</h4>
492
+ <p class="text-gray-400 text-xs text-center">(2023 Fall - )</p>
493
+ <p class="text-gray-400 text-xs text-center">Video Generation</p>
494
+ </div>
495
+ </div>
496
+
497
+ <div class="glass-effect p-4 rounded-xl hover-scale">
498
+ <div class="flex flex-col items-center">
499
+ <div class="w-20 h-20 rounded-full overflow-hidden mb-3 border-2 border-primary/30">
500
+ <div class="w-full h-full bg-gray-700 flex items-center justify-center">
501
+ <i class="fas fa-user text-gray-400"></i>
502
+ </div>
503
+ </div>
504
+ <h4 class="font-semibold text-center">Zebin He</h4>
505
+ <p class="text-gray-400 text-xs text-center">(2023 Fall - )</p>
506
+ <p class="text-gray-400 text-xs text-center">3D Texture Generation</p>
507
+ </div>
508
+ </div>
509
+
510
+ <div class="glass-effect p-4 rounded-xl hover-scale">
511
+ <div class="flex flex-col items-center">
512
+ <div class="w-20 h-20 rounded-full overflow-hidden mb-3 border-2 border-primary/30">
513
+ <div class="w-full h-full bg-gray-700 flex items-center justify-center">
514
+ <i class="fas fa-user text-gray-400"></i>
515
+ </div>
516
+ </div>
517
+ <h4 class="font-semibold text-center">Tao Zhou</h4>
518
+ <p class="text-gray-400 text-xs text-center">(2025/01 - 2025/03)</p>
519
+ </div>
520
+ </div>
521
+
522
+ <div class="glass-effect p-4 rounded-xl hover-scale">
523
+ <div class="flex flex-col items-center">
524
+ <div class="w-20 h-20 rounded-full overflow-hidden mb-3 border-2 border-primary/30">
525
+ <div class="w-full h-full bg-gray-700 flex items-center justify-center">
526
+ <i class="fas fa-user text-gray-400"></i>
527
+ </div>
528
+ </div>
529
+ <h4 class="font-semibold text-center">Zipeng Wang</h4>
530
+ <p class="text-gray-400 text-xs text-center">(2025/01 - 2025/05)</p>
531
+ </div>
532
+ </div>
533
+
534
+ </div>
535
+ </div>
536
+ <script>
537
+ // Smooth scrolling for anchor links
538
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
539
+ anchor.addEventListener('click', function (e) {
540
+ e.preventDefault();
541
+ const target = document.querySelector(this.getAttribute('href'));
542
+ if (target) {
543
+ window.scrollTo({
544
+ top: target.offsetTop - 80, // Adjust for fixed header
545
+ behavior: 'smooth'
546
+ });
547
+ }
548
+ });
549
+ });
550
+ </script>
551
+ <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>
552
+
553
  </html>