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 (

{title} ✍🏻

{description}

{entries.map((e) => (

{e.attributes.title}

{!!e.attributes.pubdate &&

{e.attributes.pubdate}

}

{e.attributes.desc}

Read more
))}
) }