mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-14 11:25:41 +00:00
70 lines
2.6 KiB
TypeScript
70 lines
2.6 KiB
TypeScript
import React from 'react'
|
|
import {GetStaticProps} from 'next'
|
|
import Head from 'next/head'
|
|
import {Card} from '@/components/Card'
|
|
import {SimpleLayout} from '@/components/layouts/SimpleLayout'
|
|
import {Views} from '@/components/Views'
|
|
import {getAllArticles} from '@/lib/getAllArticles'
|
|
import {formatDate} from '@/lib/formatDate'
|
|
import {Article} from 'types'
|
|
|
|
function Article({article}: { article: Article }) {
|
|
return (
|
|
<article>
|
|
<Card variant="inline">
|
|
<Card.Title href={`/writing/${article.slug}`}>
|
|
{article.title}
|
|
</Card.Title>
|
|
<p className="flex order-first space-x-1 z-10 mb-3 md:mb-0 md:ml-4 md:order-last flex-shrink-0">
|
|
<Card.Eyebrow as="time" dateTime={article.date} decorate={false}>
|
|
{formatDate(article.date)}
|
|
</Card.Eyebrow>
|
|
<Views slug={article.slug} shouldUpdateViews={false} className="text-sm text-zinc-500 dark:text-zinc-400"/>
|
|
</p>
|
|
</Card>
|
|
</article>
|
|
)
|
|
}
|
|
|
|
export default function ArticlesIndex({articles}: { articles: Article[] }) {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>Writing - Ryan Freeman</title>
|
|
<meta
|
|
name="description"
|
|
content="Writing on software engineering, and everything in between."
|
|
/>
|
|
<meta
|
|
property="og:title"
|
|
content="Writing - Ryan Freeman"
|
|
/>
|
|
<meta
|
|
property="og:description"
|
|
content="Writing on software engineering, and everything in between."
|
|
/>
|
|
</Head>
|
|
<SimpleLayout
|
|
title="Writing on software engineering, and everything in between."
|
|
intro="All of my long-form thoughts on software engineering, and more, displayed in chronological order."
|
|
gradient="bg-gradient-to-r from-pink-500 to-violet-500"
|
|
>
|
|
<div className="mx-auto grid max-w-xl grid-cols-1 gap-y-20 lg:max-w-none">
|
|
<div className="max-w-3xl space-y-16 mt-6">
|
|
{articles.map((article) => (
|
|
<Article key={article.slug} article={article}/>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</SimpleLayout>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export const getStaticProps: GetStaticProps = async () => {
|
|
return {
|
|
props: {
|
|
articles: (await getAllArticles()).map(({component, ...meta}) => meta),
|
|
}
|
|
}
|
|
} |