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,
Button,
} from '@chakra-ui/react'
import { AiFillGithub,AiFillMediumCircle} from "react-icons/ai";
import Publications from "../data/publications"
type BioEntryType = {
date: string,
description: string
}
const BioEntry = ({date, description} : BioEntryType) => {
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.
BioRecent publications
{Publications.map((value, key) => {
return
{value.name}
})}
On the web Github
Medium
)
}
export default Home