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' import { VStack, HStack, Box, Heading, Link, Icon, Text, Image as CImage, Stack } from '@chakra-ui/react' import { AiFillGithub,AiFillMediumCircle} from "react-icons/ai"; const BioEntry = ({date, description}) => { return {date} {description} } const Home: NextPage = () => { return ( Michal Sapka Self-though senior software engineer from Poland. About me I am a self-thoght software engineer working with at Zendesk. 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. Bio I enjoy Non-action movies, anime and manga, classic PC games (with huge love for adventure ganre), literature, jazz. Recent publications ... On the web Github Medium ) } export default Home