:default_dance:

This commit is contained in:
Erik 2022-03-22 22:16:36 +02:00
parent 5685a9206b
commit d3a3080c91
No known key found for this signature in database
GPG Key ID: FEFF4B220DDF5589
3 changed files with 46 additions and 16 deletions

View File

@ -34,7 +34,7 @@ footer {
.navlink:hover {
color: var(--primary-color);
background-color: rgba(97, 97, 97, 0.199);
border-radius: 10px 10px 0 0;
/* border-radius: 10px 10px 0 0; */
border-bottom: 5px solid var(--light-shadow);
}

View File

@ -69,4 +69,9 @@ code {
.shadow {
box-shadow: 5px 5px 5px rgb(68,68,68);
}
iframe {
margin: auto;
margin-top: 10px;
}

View File

@ -6,25 +6,50 @@ const Home = () => {
return (
<div className="home">
<h4> Hi! </h4>
<section>
<h3> Hi! </h3>
<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'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>
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>
</section>
<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>
<section>
<h3> While you're here... </h3>
<p>
If you have about 15 minutes, see the video on the left. If you have more time, see the one on the right.
</p>
<div className='flex-container'>
<iframe
width="640" height="360"
src="https://www.youtube.com/embed/CoFjbnvkmQ0"
title="YouTube video player" frameBorder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowFullScreen />
<p>
<small><small>P.S. corgis r amazing</small></small>
</p>
<iframe
width="640" height="360"
src="https://www.youtube.com/embed/HnZSaKYmP2s"
title="YouTube video player" frameBorder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowFullScreen />
</div>
</section>
</div>
);