Skip to content

Commit 35f36a5

Browse files
Update news.html
1 parent 32bb789 commit 35f36a5

File tree

1 file changed

+71
-0
lines changed

1 file changed

+71
-0
lines changed

_includes/news.html

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,75 @@ <h2>📌 Latest News</h2>
9292
📭 No news available at the moment...
9393
</div>
9494
{%- endif %}
95+
96+
<h2>🤝 Collaborators and Student Interns</h2>
97+
<div class="collaborators-container">
98+
<div class="collaborators-grid">
99+
<img src="assets/img/collaborators/didi.jpeg" alt="DiDi" loading="lazy">
100+
<img src="assets/img/collaborators/hauwei.jpeg" alt="Huawei" loading="lazy">
101+
<img src="assets/img/collaborators/lixiang.jpeg" alt="LiXiang" loading="lazy">
102+
<img src="assets/img/collaborators/mayi.jpeg" alt="MaYi" loading="lazy">
103+
<img src="assets/img/collaborators/microsoft.jpeg" alt="Microsoft" loading="lazy">
104+
<img src="assets/img/collaborators/minimax.jpeg" alt="MiniMax" loading="lazy">
105+
<img src="assets/img/collaborators/nuoya.jpeg" alt="NuoYa" loading="lazy">
106+
<img src="assets/img/collaborators/oppo.jpeg" alt="OPPO" loading="lazy">
107+
<img src="assets/img/collaborators/qwen.jpeg" alt="QWen" loading="lazy">
108+
<img src="assets/img/collaborators/shanshu.jpeg" alt="ShanShu" loading="lazy">
109+
<img src="assets/img/collaborators/tencent.jpeg" alt="Tencent" loading="lazy">
110+
<img src="assets/img/collaborators/tianlai.jpeg" alt="TianLai" loading="lazy">
111+
</div>
112+
</div>
113+
114+
<style>
115+
.collaborators-container {
116+
margin-top: 30px;
117+
padding: 20px 0;
118+
}
119+
120+
.collaborators-grid {
121+
display: grid;
122+
grid-template-columns: repeat(4, 1fr);
123+
gap: 30px;
124+
align-items: center;
125+
justify-items: center;
126+
}
127+
128+
.collaborators-grid img {
129+
width: 100%;
130+
max-width: 180px;
131+
height: auto;
132+
filter: grayscale(30%);
133+
transition: all 0.3s ease;
134+
border-radius: 8px;
135+
padding: 10px;
136+
background: white;
137+
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
138+
}
139+
140+
.collaborators-grid img:hover {
141+
filter: grayscale(0);
142+
transform: scale(1.05);
143+
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
144+
}
145+
146+
@media (max-width: 992px) {
147+
.collaborators-grid {
148+
grid-template-columns: repeat(3, 1fr);
149+
gap: 20px;
150+
}
151+
}
152+
153+
@media (max-width: 768px) {
154+
.collaborators-grid {
155+
grid-template-columns: repeat(2, 1fr);
156+
gap: 15px;
157+
}
158+
}
159+
160+
@media (max-width: 480px) {
161+
.collaborators-grid {
162+
grid-template-columns: 1fr;
163+
}
164+
}
165+
</style>
95166
</div>

0 commit comments

Comments
 (0)