@@ -92,4 +92,75 @@ <h2>📌 Latest News</h2>
92
92
📭 No news available at the moment...
93
93
</ div >
94
94
{%- 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 >
95
166
</ div >
0 commit comments