Skip to content

Commit 958a1ed

Browse files
committed
feat: add AI Working Group
Signed-off-by: coder-sett <[email protected]>
1 parent 922b78d commit 958a1ed

File tree

7 files changed

+52
-1
lines changed

7 files changed

+52
-1
lines changed

apps/web/i18n

92 KB
Loading
28.8 KB
Loading
476 KB
Loading
22 KB
Loading
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
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;

apps/web/src/modules/about/index.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import TechnicalCommittee from './30TechnicalCommittee';
77
import OutreachCommittee from './40OutreachCommittee';
88
import AssessmentModelWorkingGroup from './50AssessmentModelWorkingGroup';
99
import SaaSWorkingGroup from './60SaaSWorkingGroup';
10+
import AIWorkingGroup from './55AIWorkingGroup';
1011

1112
const About = () => {
1213
return (
@@ -20,6 +21,7 @@ const About = () => {
2021
<TechnicalCommittee />
2122
<OutreachCommittee />
2223
<AssessmentModelWorkingGroup />
24+
<AIWorkingGroup />
2325
<SaaSWorkingGroup />
2426
</div>
2527
</div>

0 commit comments

Comments
 (0)