More about me stuff
This commit is contained in:
19
data/achievements.tsx
Normal file
19
data/achievements.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
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",
|
||||
"icon": <Icon path={mdiSeal} size={size || "2em"} />
|
||||
}, {
|
||||
"description": "Developer of the official testbed for Digital Twins in Industry 4.0 of the TU Dresden",
|
||||
"icon": <Icon path={mdiRobotIndustrial} size={size || "2em"} />
|
||||
}
|
||||
];
|
||||
|
||||
export default achievements;
|
||||
Reference in New Issue
Block a user