import type { NextPage } from 'next' import Head from 'next/head' import Image from 'next/image' import Layout from '../components/layout' import styles from '../styles/Home.module.css' const Home: NextPage = () => { return (
Self-though senior software engineer from Poland.
I am a self-thoght software engineer working with at . Even though I've sterted my professional programig life relatively late in life, I've been passionate with computers since being 10 years old. I love the process of creating software. Even though understanding the product is a requisite, I am strongly driven by the technical side. I take pride at what and how I do things. I have biggest experience working with Ruby on Rails and relative datababases, but I am expanding my knowlege around service oriented architecture, no-sql databases and other languages - currently I am trying to get a hang of Golang, MongoDB. I am also trying to get familiar with modern ReactJS ecosystem.
Non-action movies, anime and manga, classic PC games (with huge love for adventure ganre), literature, jazz.
...
) } const Header = ({text}) => { return(

{text}

) } const LinkOut = ({url, text}) => { return {text} } const Text = ({children}) => { return
{children}
} export default Home