diff --git a/src/components/Book/Book.jsx b/src/components/Book/Book.jsx index 2b5f6fe..868a0b7 100644 --- a/src/components/Book/Book.jsx +++ b/src/components/Book/Book.jsx @@ -3,10 +3,10 @@ import { NextSeo } from 'next-seo' import Image from 'next/image' import Link from 'next/link' import React from 'react' -import style from "./Book.module.css"; +import style from './Book.module.css' import ExternalLink from '../ExternalLink/ExternalLink' -function Book({ attributes, html }) { +function Book ({ attributes, html }) { return ( <>

{attributes.title}
by {attributes.author}

diff --git a/src/lib/content.js b/src/lib/content.js index d3b08f9..4a9e2d7 100644 --- a/src/lib/content.js +++ b/src/lib/content.js @@ -66,7 +66,7 @@ export function getContentTags (contentPath) { for (const entry of entries) { if (!entry.attributes.tags) { continue } - const tags = entry.attributes.tags; + const tags = entry.attributes.tags for (const tag of tags) { allTags[tag] = !allTags[tag] ? 1 : allTags[tag] + 1 } diff --git a/src/lib/helpers.js b/src/lib/helpers.js index e6f1287..928020a 100644 --- a/src/lib/helpers.js +++ b/src/lib/helpers.js @@ -11,9 +11,9 @@ export function formatDate (date) { /** * Silliness to make sure dates don't get passed to the * page function below as [object Object] - * @param {*} obj - * @returns + * @param {*} obj + * @returns */ -export function stringifyAndParse(obj) { - return JSON.parse(JSON.stringify(obj)); -} \ No newline at end of file +export function stringifyAndParse (obj) { + return JSON.parse(JSON.stringify(obj)) +} diff --git a/src/pages/index.js b/src/pages/index.js index 389fb82..24bcbb4 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -33,7 +33,7 @@ export default function Home ({ postEntries }) {

Recent posts

- +
diff --git a/src/pages/library/[slug].js b/src/pages/library/[slug].js index 4631999..8c6f762 100644 --- a/src/pages/library/[slug].js +++ b/src/pages/library/[slug].js @@ -5,8 +5,8 @@ import Book from '@/components/Book/Book' import { stringifyAndParse } from '@/lib/helpers' export const getStaticPaths = () => getStaticEntryPaths('./content/books') -export const getStaticProps = (ctx) => - stringifyAndParse(getStaticEntryProps('./content/books', ctx)); +export const getStaticProps = (ctx) => + stringifyAndParse(getStaticEntryProps('./content/books', ctx)) export default function LibrarySingle ({ attributes, html }) { return ( diff --git a/src/pages/library/index.js b/src/pages/library/index.js index 840db2f..2ea0d23 100644 --- a/src/pages/library/index.js +++ b/src/pages/library/index.js @@ -17,7 +17,7 @@ export const getStaticProps = () => { props: { bookEntries: stringifyAndParse(bookEntries) } - }; + } } export default function Library ({ bookEntries }) {