frontpage/data/achievements.tsx

19 lines
644 B
TypeScript
Raw Normal View History

2022-10-20 17:48:27 +02:00
import Icon from "@mdi/react";
import { mdiSeal, mdiRobotIndustrial } from "@mdi/js";
interface Achievement {
description: string;
icon: JSX.Element;
}
export const achievements = (size?: string): Achievement[] => [
{
"description": "Awarded with the Deutschlandstipendium",
2022-10-27 15:41:27 +02:00
"icon": <Icon path={mdiSeal} size={size || "2em"} id={"mdi_achievement_stip"} />
2022-10-20 17:48:27 +02:00
}, {
"description": "Developer of the official testbed for Digital Twins in Industry 4.0 of the TU Dresden",
2022-10-27 15:41:27 +02:00
"icon": <Icon path={mdiRobotIndustrial} size={size || "2em"} id={"mdi_achievement_i40"} />
2022-10-20 17:48:27 +02:00
}
];
export default achievements;