45 lines
977 B
TypeScript
45 lines
977 B
TypeScript
export interface AboutPageText {
|
|
dean: {
|
|
nickname: string;
|
|
username: string;
|
|
status: string;
|
|
note: string;
|
|
};
|
|
fracher: {
|
|
nickname: string;
|
|
username: string;
|
|
status: string;
|
|
note: string;
|
|
};
|
|
}
|
|
|
|
export const aboutPageZhCn: AboutPageText = {
|
|
dean: {
|
|
nickname: '晓洋',
|
|
username: '@ Dawn_Ocean',
|
|
status: 'Eta & Tea 总设计',
|
|
note: '摸鱼与开发叠加态',
|
|
},
|
|
fracher: {
|
|
nickname: '宇航员',
|
|
username: '@ FrozenArcher',
|
|
status: 'Ate 总设计, 项目合作贡献者',
|
|
note: 'React 真是太有意思了',
|
|
},
|
|
};
|
|
|
|
export const aboutPageEnUs: AboutPageText = {
|
|
dean: {
|
|
nickname: 'Dean Ma',
|
|
username: '@ Dawn_Ocean',
|
|
status: "Eta & Tea's General Designer",
|
|
note: 'Struggling between developing & laziness',
|
|
},
|
|
fracher: {
|
|
nickname: 'Fracher',
|
|
username: '@ FrozenArcher',
|
|
status: "Ate's General Designer, Project's Contributor",
|
|
note: 'React is so fun',
|
|
},
|
|
};
|