feat: metadata

This commit is contained in:
Aaron Yarborough 2024-08-22 19:02:52 +01:00
parent b6f93aadf6
commit 788e90a77f
2 changed files with 17 additions and 5 deletions

View file

@ -15,6 +15,7 @@
"Levantine",
"Orangebus",
"pipdig",
"pubdate",
"quot",
"Radr",
"Recon",

View file

@ -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 (
<DefaultLayout>
<NextSeo
title={title}
description={description}
openGraph={
{
title,
description
}
}
/>
<section>
<h1>Writing</h1>
<p>
Come get ya thoughts, ramblings, technical writing and other
long-from text content here!
</p>
<h1>{title}</h1>
<p>{description}</p>
</section>
<section>