2022-10-18 23:40:27 +02:00
|
|
|
import type { NextPage } from "next";
|
|
|
|
import Layout from "../components/Blog/Layout";
|
|
|
|
|
|
|
|
import styles from "../styles/Blog/AboutMe.module.scss";
|
|
|
|
|
|
|
|
const SkillBar: NextPage<{ skill: string, color: string, pct: number }> = ({skill, color, pct}) => {
|
|
|
|
return <></>;
|
|
|
|
};
|
|
|
|
|
|
|
|
const AboutMe: NextPage = () => {
|
|
|
|
const age = new Date().getFullYear() - 1998 - (new Date().getMonth() < 10 ? 1 : 0);
|
|
|
|
|
|
|
|
return <Layout>
|
|
|
|
<h1>This is me.</h1>
|
|
|
|
<p className={styles.preText}>
|
2022-10-19 11:09:22 +02:00
|
|
|
Hi! My name is <strong>Daniel</strong> and I'm an automation engineer from Germany.
|
2022-10-18 23:40:27 +02:00
|
|
|
</p>
|
|
|
|
<p>
|
2022-10-19 11:09:22 +02:00
|
|
|
I'm currently studying <strong>Information Systems Engineering</strong> at the <strong>TU Dresden</strong><br/>
|
|
|
|
Currently I'm {age} years old.
|
2022-10-18 23:40:27 +02:00
|
|
|
</p>
|
|
|
|
</Layout>;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
export default AboutMe;
|