feat: metadata
This commit is contained in:
parent
b6f93aadf6
commit
788e90a77f
2 changed files with 17 additions and 5 deletions
1
.vscode/settings.json
vendored
1
.vscode/settings.json
vendored
|
@ -15,6 +15,7 @@
|
||||||
"Levantine",
|
"Levantine",
|
||||||
"Orangebus",
|
"Orangebus",
|
||||||
"pipdig",
|
"pipdig",
|
||||||
|
"pubdate",
|
||||||
"quot",
|
"quot",
|
||||||
"Radr",
|
"Radr",
|
||||||
"Recon",
|
"Recon",
|
||||||
|
|
|
@ -2,18 +2,29 @@ import DefaultLayout from '@/layouts/DefaultLayout/DefaultLayout'
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
import Link from 'next/link'
|
import Link from 'next/link'
|
||||||
import { getStaticEntryListProps } from '@/lib/content'
|
import { getStaticEntryListProps } from '@/lib/content'
|
||||||
|
import { NextSeo } from 'next-seo'
|
||||||
|
|
||||||
export const getStaticProps = () => getStaticEntryListProps('./content/writing', '/writing/')
|
export const getStaticProps = () => getStaticEntryListProps('./content/writing', '/writing/')
|
||||||
|
|
||||||
export default function Writing ({ entries, urlPrefix }) {
|
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 (
|
return (
|
||||||
<DefaultLayout>
|
<DefaultLayout>
|
||||||
|
<NextSeo
|
||||||
|
title={title}
|
||||||
|
description={description}
|
||||||
|
openGraph={
|
||||||
|
{
|
||||||
|
title,
|
||||||
|
description
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/>
|
||||||
<section>
|
<section>
|
||||||
<h1>Writing</h1>
|
<h1>{title}</h1>
|
||||||
<p>
|
<p>{description}</p>
|
||||||
Come get ya thoughts, ramblings, technical writing and other
|
|
||||||
long-from text content here!
|
|
||||||
</p>
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
|
|
Loading…
Add table
Reference in a new issue