From 788e90a77fc90dbf8fd8169810463966e8cbfe49 Mon Sep 17 00:00:00 2001 From: Aaron Yarborough Date: Thu, 22 Aug 2024 19:02:52 +0100 Subject: [PATCH] feat: metadata --- .vscode/settings.json | 1 + src/pages/writing/index.js | 21 ++++++++++++++++----- 2 files changed, 17 insertions(+), 5 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 16b61cf..2004655 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -15,6 +15,7 @@ "Levantine", "Orangebus", "pipdig", + "pubdate", "quot", "Radr", "Recon", diff --git a/src/pages/writing/index.js b/src/pages/writing/index.js index 5a8ac65..3c91cdb 100644 --- a/src/pages/writing/index.js +++ b/src/pages/writing/index.js @@ -2,18 +2,29 @@ import DefaultLayout from '@/layouts/DefaultLayout/DefaultLayout' import React from 'react' import Link from 'next/link' import { getStaticEntryListProps } from '@/lib/content' +import { NextSeo } from 'next-seo' export const getStaticProps = () => getStaticEntryListProps('./content/writing', '/writing/') export default function Writing ({ entries, urlPrefix }) { + const title = 'Writing' + const description = 'Come get ya thoughts, ramblings, technical writing and other long-from text content here!' + return ( +
-

Writing

-

- Come get ya thoughts, ramblings, technical writing and other - long-from text content here! -

+

{title}

+

{description}