Skip to content

Commit

Permalink
Revert "hide unfinished sections and pages for now"
Browse files Browse the repository at this point in the history
This reverts commit d3d4ce6.
  • Loading branch information
L1fescape committed Oct 29, 2019
1 parent d3d4ce6 commit 7cb469e
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion src/pages/home/component.tsx
Expand Up @@ -7,7 +7,7 @@ import { Socials, Links } from 'ak.gg/components/socials'
import './styles.scss'

export const Home = () => (
<Page className="home" noHeader noFooter pageSource={__filename}>
<Page className="home" hideHomeLink pageSource={__filename}>
<Woulg className="hi">
<section>
<div className="intro">
Expand All @@ -19,5 +19,32 @@ export const Home = () => (
</div>
</section>
</Woulg>
<section className="about">
<h2>Hello! 👋</h2>
<h3>Quick Intro</h3>
<p>
{`I'm Andrew and I like writing music, skateboarding, and making things
with code. During the day I'm a Software Engineer at `}
<Links.SauceLabs />. At night I work on{' '}
<Links.GitHub>open source projects</Links.GitHub> and make beats.
</p>
</section>
<section className="projects">
<h2>Projects</h2>
<div className="content">
<div className="project">
<h3>Tetris</h3>
</div>
<div className="project">
<h3>Life</h3>
<h4>Magic: The Gathering Life Counter</h4>
</div>
</div>
</section>
<section className="blog">
<h2>
Latest from the <Link to={Routes.Blog}>Blog</Link>
</h2>
</section>
</Page>
)

0 comments on commit 7cb469e

Please sign in to comment.