2022-03-21 22:42:23 +01:00
/* eslint-disable react/no-unescaped-entities */
2022-03-20 16:36:58 +01:00
import '../css/Home.css' ;
2022-03-21 22:42:23 +01:00
import React from 'react' ;
2022-03-20 16:36:58 +01:00
const Home = ( ) => {
return (
< div className = "home" >
< h4 > Hi ! < / h 4 >
< p >
I 'm Navy, or Erik. I' m a 20 - something year old software developer from Finland . I don 't really do design™, so excuse the oddly themed page (it' s also probably unfinished ) .
< / p >
< p >
I like to volunteer some of my free time in online communities both as a moderator as well as a bot developer and maintainer .
My longest running project is a Discord bot named < a href = 'https://galactic.corgi.wtf' > Galactic < / a > t h a t I w a s i n v i t e d t o j o i n i n 2 0 1 6 a n d h a v e b e e n m a i n t a i n i n g a n d d e v e l o p i n g s i n c e .
< / p >
< p >
On top of software development I enjoy playing vidya , of which I may occasionally post clips in the media page on this site .
Beyond that there isn ' t much else to know about me , am simple man .
< / p >
< p >
< small > < small > P . S . corgis r amazing < / s m a l l > < / s m a l l >
< / p >
< / d i v >
) ;
2022-03-21 22:42:23 +01:00
} ;
2022-03-20 16:36:58 +01:00
export default Home ;