Skip to content

Commit

Permalink
added todos, fixed spacing in mobile menu, changed some verbiage
Browse files Browse the repository at this point in the history
  • Loading branch information
nyan-matt committed Jul 9, 2020
1 parent 2340869 commit c1e0f52
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion components/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ const Header = ({ ...props }) => {
</a>
</Link>
</li>
<li className="mr-3">
<li className="mr-3 mt-1 lg:mt-0">
<Login />
</li>
<li className="hidden lg:block text-2xl no-underline pl-2 transition duration-400 hover:text-primary hover:underline">
Expand Down
2 changes: 1 addition & 1 deletion components/Hero.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default (props) => {
</h1>
<p className="text-sm pt-3 sm:text-base text-gray-500 pr-3">
A small proof-of-concept application using Next.js &amp; React hooks
to query a FaunaDB GraphQL endpoint to manage a bookshelf with reading
to query a FaunaDB GraphQL endpoint to manage a bookshelf with book
recommendations.
</p>
<div className="flex mt-8">
Expand Down
13 changes: 8 additions & 5 deletions pages/about.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export default function About(props) {
<h2 className="text-3xl font-bold mt-3">Tailwind</h2>
<p>
This was my first time using{" "}
<a href="https://tailwind.com">tailwind</a> css, and I like the
<a href="https://tailwindcss.com">tailwind</a> css, and I like the
utility-first concept. Boostrap and Bulma are nice, but I would often
supplement those base styles with sass spacing utilities. It can get a
little repetitive, but you can always{" "}
Expand Down Expand Up @@ -131,19 +131,22 @@ export default function About(props) {

<h2 className="text-3xl font-bold mt-3">TODOs</h2>
<ul className="list-disc list-inside">
<li>General cleanup, add prettier, etc.</li>
<li>General cleanup, abstract filtering, etc.</li>
<li>Edit a book entry</li>
<li>Delete a book entry</li>
<li>View bookshelf of another user (e.g., /bookshelf/:user</li>
<li>
Make theme choice persistent across hard page reloads; read from
prefers-color-scheme setting
</li>
<li>View bookshelf of another user (e.g., /bookshelf/:user</li>
<li>Reading Lists</li>
<li>Reading lists</li>
<li>"Like" a book</li>
<li>Tests</li>
<li>Add new tag</li>
<li>Resolve accessibility concerns</li>
<li>Create new tag(s) on the fly</li>
<li>Search by title, author</li>
<li>PWA</li>
<li>Update meta tags title/description on route change </li>
</ul>
</div>
</div>
Expand Down

1 comment on commit c1e0f52

@vercel
Copy link

@vercel vercel bot commented on c1e0f52 Jul 9, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.