2025-01-15 16:14:26 +00:00
|
|
|
import {Kbd} from "../../components/Kbd";
|
2025-01-11 19:11:20 +00:00
|
|
|
|
|
|
|
export const AboutMe = () => {
|
|
|
|
const age = Math.floor(
|
|
|
|
((new Date() as any) - (new Date("1993-07-11") as any)) / 31557600000
|
|
|
|
);
|
|
|
|
|
|
|
|
const work = Math.floor(
|
|
|
|
((new Date() as any) - (new Date("2012-12-01") as any)) / 31557600000
|
|
|
|
);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<section className="leading-snug text-slate-500 dark:text-slate-400">
|
|
|
|
<p>
|
2025-01-15 16:14:26 +00:00
|
|
|
Hello, my name is Roman Jaroš. I am {age}. <span className="underline dark:text-white decoration-pink-500">
|
|
|
|
{work} years working as software engineer. </span>
|
2025-01-11 19:11:20 +00:00
|
|
|
I have been programming since I was 15 years old and still love to learn new technologies.
|
2025-01-15 16:14:26 +00:00
|
|
|
Outside of the programming world, I maintain servers with around 80 docker containers.
|
2025-01-11 19:11:20 +00:00
|
|
|
Outside of the IT world, I enjoy reading self improvement books, meditating,
|
|
|
|
alternative medicine and model painting or playing video games.
|
|
|
|
</p>
|
|
|
|
<br/>
|
|
|
|
<p>
|
|
|
|
<b>I am contractor and currently only for full remote jobs.</b>
|
|
|
|
</p>
|
|
|
|
<br />
|
2025-01-15 19:36:28 +00:00
|
|
|
<div className="flex flex-row flex-wrap gap-2">
|
2025-01-15 19:39:04 +00:00
|
|
|
<Kbd>#uidesign</Kbd>
|
|
|
|
<Kbd>#webdevelopment</Kbd>
|
|
|
|
<Kbd>#automationtesting</Kbd>
|
|
|
|
<Kbd>#devops</Kbd>
|
2025-01-11 19:11:20 +00:00
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|