More about me stuff

This commit is contained in:
2022-10-20 17:48:27 +02:00
parent aa28e1a8a7
commit 4953da3aee
5 changed files with 235 additions and 50 deletions

19
data/achievements.tsx Normal file
View 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;