Skip to content
This repository has been archived by the owner on Jul 29, 2022. It is now read-only.

Commit

Permalink
Getting typography OK
Browse files Browse the repository at this point in the history
  • Loading branch information
phocks committed Mar 4, 2020
1 parent 7893cff commit 064104b
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 14 deletions.
4 changes: 2 additions & 2 deletions components/layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,13 +234,13 @@ const Layout = props => {
h4,
h5,
h6 {
/* margin-top: 0;
margin-bottom: 1em; */
font-weight: bold;
margin-bottom: 0.75em;
}
p {
margin-top: 0;
margin-bottom: 0.75em;
}
a {
Expand Down
26 changes: 15 additions & 11 deletions pages/about.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,21 @@ const About = props => {
<Layout title={"About — Quoke"}>
<div className={"about container"}>
<div className={"top"}>

<h1 className={"title"}>About</h1>
<p>
quoke - an open source project to collect and share quotations.
</p>
<div className="edit">
<a href="https://github.com/phocks/quoke/blob/master/pages/about.js">
Edit this page
</a>
</div>

<h1 className={"title"}>About</h1>
<p>
Quoke is an open source project to collect and share quotations.
</p>

<p>
It is still in early development. If you'd like to help out{" "}
<a href="https://github.com/phocks/quoke">give it a star</a> on
GitHub.
</p>
<div className="edit">
<a href="https://github.com/phocks/quoke/blob/master/pages/about.js">
Edit this page
</a>
</div>
</div>
</div>
<hr />
Expand Down
7 changes: 6 additions & 1 deletion pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@ const Home = props => {

return (
<Layout title="Quoke">
<div className={"container"}><h1>Welcome to Quoke</h1></div>
<div className={"container"}><h1>Welcome to Quoke</h1>

<p className="lead">quoke - an open source project to collect and share quotations.</p>


</div>

</Layout>
);
Expand Down

0 comments on commit 064104b

Please sign in to comment.