diff --git a/src/components/StaticContentList/StaticContentList.jsx b/src/components/StaticContentList/StaticContentList.jsx
index b1dccd4..64d7ddd 100644
--- a/src/components/StaticContentList/StaticContentList.jsx
+++ b/src/components/StaticContentList/StaticContentList.jsx
@@ -1,19 +1,19 @@
-import { formatDate } from "@/lib/helpers";
-import Link from "next/link";
+import { formatDate } from '@/lib/helpers'
+import Link from 'next/link'
-export default function StaticContentList({ entries, urlPrefix }) {
- return (
-
-
- {entries.map((e) => (
-
- {!!e.attributes.pubdate && {formatDate(e.attributes.pubdate)}} |
-
- {e.attributes.title}
- |
-
- ))}
-
-
- )
-}
\ No newline at end of file
+export default function StaticContentList ({ entries, urlPrefix }) {
+ return (
+
+
+ {entries.map((e) => (
+
+ {!!e.attributes.pubdate && {formatDate(e.attributes.pubdate)}} |
+
+ {e.attributes.title}
+ |
+
+ ))}
+
+
+ )
+}
diff --git a/src/layouts/DefaultLayout/DefaultLayout.jsx b/src/layouts/DefaultLayout/DefaultLayout.jsx
index 8800832..6ca6d73 100644
--- a/src/layouts/DefaultLayout/DefaultLayout.jsx
+++ b/src/layouts/DefaultLayout/DefaultLayout.jsx
@@ -10,7 +10,7 @@ function DefaultLayout ({ children }) {
-
+
diff --git a/src/lib/content.js b/src/lib/content.js
index 18d4ad3..fe61b97 100644
--- a/src/lib/content.js
+++ b/src/lib/content.js
@@ -52,11 +52,11 @@ export function getStaticEntryProps (contentPath, { params }) {
return { props: { ...entry, attributes } }
}
-export function getStaticEntries(contentPath) {
- const directoryItems = fs.readdirSync(contentPath, { withFileTypes: true });
+export function getStaticEntries (contentPath) {
+ const directoryItems = fs.readdirSync(contentPath, { withFileTypes: true })
return directoryItems.map((dirent) =>
getMarkdownEntry(`${dirent.path}/${dirent.name}`)
- ).sort((a, b) =>
+ ).sort((a, b) =>
new Date(b.attributes.pubdate).getTime() - new Date(a.attributes.pubdate).getTime()
- );
-}
\ No newline at end of file
+ )
+}
diff --git a/src/pages/_document.js b/src/pages/_document.js
index 91f23cc..5a6677e 100644
--- a/src/pages/_document.js
+++ b/src/pages/_document.js
@@ -4,7 +4,7 @@ export default function Document () {
return (
-
+
diff --git a/src/pages/about/index.js b/src/pages/about/index.js
index 0374c96..c0dfdd3 100644
--- a/src/pages/about/index.js
+++ b/src/pages/about/index.js
@@ -1,7 +1,7 @@
-import ExternalLink from "@/components/ExternalLink/ExternalLink";
-import DefaultLayout from "@/layouts/DefaultLayout/DefaultLayout";
+import ExternalLink from '@/components/ExternalLink/ExternalLink'
+import DefaultLayout from '@/layouts/DefaultLayout/DefaultLayout'
-export default function About() {
+export default function About () {
return (
About me
diff --git a/src/pages/cv/index.js b/src/pages/cv/index.js
index 03dc443..412477c 100644
--- a/src/pages/cv/index.js
+++ b/src/pages/cv/index.js
@@ -20,11 +20,11 @@ function ResumePage ({
- {Title}
+ {Title}
({
props: {
- postEntries: getStaticEntries("content/writing")
+ postEntries: getStaticEntries('content/writing')
}
})
-export default function Home({ postEntries }) {
+export default function Home ({ postEntries }) {
return (
@@ -33,7 +33,7 @@ export default function Home({ postEntries }) {
diff --git a/src/pages/writing/index.js b/src/pages/writing/index.js
index 63ad507..dc4957f 100644
--- a/src/pages/writing/index.js
+++ b/src/pages/writing/index.js
@@ -6,28 +6,27 @@ import StaticContentList from '@/components/StaticContentList/StaticContentList'
export const getStaticProps = () => ({
props: {
- postEntries: getStaticEntries("./content/writing")
+ postEntries: getStaticEntries('./content/writing')
}
})
export const Title = 'Writing'
export default function Writing ({ postEntries }) {
-
return (
{Title}
)