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

This is me.

Hi! My name is Daniel and I'm an automation engineer from Germany.

I'm currently studying Information Systems Engineering at the TU Dresden
Currently I'm {age} years old.

; }; export default AboutMe;