File tree Expand file tree Collapse file tree 7 files changed +52
-1
lines changed
Expand file tree Collapse file tree 7 files changed +52
-1
lines changed Original file line number Diff line number Diff line change 1+ import React from 'react' ;
2+ import { useTranslation } from 'next-i18next' ;
3+ import { Title , Grid } from '@modules/about/components' ;
4+ import MemberCard from '@modules/about/components/MemberCard' ;
5+
6+ const data = [
7+ {
8+ avatar : '/images/about/齐国强@2x.png' ,
9+ name : '齐国强' ,
10+ intro : '华为 2012 实验室' ,
11+ } ,
12+ {
13+ avatar : '/images/about/朱家顺.png' ,
14+ name : '朱家顺' ,
15+ intro : '吉林大学计算机学院在读研究生' ,
16+ } ,
17+ {
18+ avatar : '/images/about/冉丰源.jpg' ,
19+ name : '冉丰源' ,
20+ intro : '北京大学计算机学院软件研究所在读博士研究生' ,
21+ } ,
22+ {
23+ avatar : '/images/about/代睿祺.jpg' ,
24+ name : '代睿祺' ,
25+ intro : '北京邮电大学网络空间安全学院在读研究生' ,
26+ } ,
27+ {
28+ avatar : '/images/about/王雷.jpg' ,
29+ name : '王雷' ,
30+ intro : '中国科学技术大学信息学院研究生' ,
31+ } ,
32+ ] ;
33+
34+ const AIWorkingGroup = ( ) => {
35+ const { t } = useTranslation ( ) ;
36+ return (
37+ < div className = "mb-20" >
38+ < Title > { t ( 'about:ai_working_group' ) } </ Title >
39+
40+ < Grid className = "bg-[#fafafa] px-16 py-10" >
41+ { data . map ( ( item ) => {
42+ return < MemberCard key = { item . name } { ...item } /> ;
43+ } ) }
44+ </ Grid >
45+ </ div >
46+ ) ;
47+ } ;
48+
49+ export default AIWorkingGroup ;
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import TechnicalCommittee from './30TechnicalCommittee';
77import OutreachCommittee from './40OutreachCommittee' ;
88import AssessmentModelWorkingGroup from './50AssessmentModelWorkingGroup' ;
99import SaaSWorkingGroup from './60SaaSWorkingGroup' ;
10+ import AIWorkingGroup from './55AIWorkingGroup' ;
1011
1112const About = ( ) => {
1213 return (
@@ -20,6 +21,7 @@ const About = () => {
2021 < TechnicalCommittee />
2122 < OutreachCommittee />
2223 < AssessmentModelWorkingGroup />
24+ < AIWorkingGroup />
2325 < SaaSWorkingGroup />
2426 </ div >
2527 </ div >
You can’t perform that action at this time.
0 commit comments