Skip to content

Commit

Permalink
minor tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
bukinoshita committed Aug 28, 2017
1 parent ce39081 commit 2faa891
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
1 change: 0 additions & 1 deletion components/footnotes.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ const Footnotes = ({ footnotes }) => {
<div>
<h4>
{footnote2.title}
<span>(not ready yet)</span>
</h4>
<p>
{footnote2.description}
Expand Down
2 changes: 1 addition & 1 deletion pages/about/work-experience.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class WorkExperience extends Component {
{
title: 'Blog',
description: `Sometimes I like to write about code and share my knowledge to learn/teach other people.`,
href: '/'
href: '/blog'
}
]

Expand Down
19 changes: 10 additions & 9 deletions pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import sortArr from 'sort-arr'
import Link from 'next/link'

import Page from './../layouts/page'
import { colors, typography } from './../theme'

class Home extends Component {
static async getInitialProps() {
Expand All @@ -23,7 +24,7 @@ class Home extends Component {
).reverse()[0]

return (
<Page color="#fff">
<Page color={colors.white}>
<div>
<h1>bu kinoshita</h1>
<h2>front-end engineer & ux designer</h2>
Expand Down Expand Up @@ -68,7 +69,7 @@ class Home extends Component {
}
h2 {
color: #868e96;
color: ${colors.subtitle};
line-height: 30px;
}
Expand All @@ -79,32 +80,32 @@ class Home extends Component {
li {
font-size: 13px;
color: #868e96;
color: ${colors.subtitle};
padding-right: 5px;
}
a,
span {
color: #868e96;
color: ${colors.subtitle};
margin-right: 5px;
cursor: pointer;
}
a:hover,
span:hover {
color: #000;
color: ${colors.black};
}
h3 {
font-weight: 400;
font-weight: ${typography.regular};
font-size: 14px;
color: #868e96;
color: ${colors.subtitle};
margin-top: 16px;
}
h3 a {
font-weight: 600;
color: #000;
font-weight: ${typography.bold};
color: ${colors.black};
}
h3 a:hover {
Expand Down

0 comments on commit 2faa891

Please sign in to comment.