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 SapkaSelf-though senior software engineer from Poland.About me
I am a self-thought software engineer working at Zendesk. Even though I started my professional programming life relatively late in life, I've been passionate about computers since I was ten. I love the process of creating software. Even though I consider caring about the product a requisite, the technical side strongly drives me. I take pride in what and how I do things. I have most extensive experience working with Ruby on Rails and relative databases. Still, I am expanding my knowledge around service-oriented architecture, no-SQL databases, and other languages - currently, I am trying to get the hang of Golang and MongoDB. I am also trying to get familiar with the modern ReactJS ecosystem.
BioI 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