homepage/client/src/pages/Home.js
2022-03-21 23:42:23 +02:00

34 lines
1.1 KiB
JavaScript

/* eslint-disable react/no-unescaped-entities */
import '../css/Home.css';
import React from 'react';
const Home = () => {
return (
<div className="home">
<h4> Hi! </h4>
<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> that I was invited to join in 2016 and have been maintaining and developing since.
</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</small></small>
</p>
</div>
);
};
export default Home;