-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
120 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
import React from 'react'; | ||
|
||
import { allPosts, Post } from 'contentlayer/generated'; | ||
import { format, parseISO } from 'date-fns'; | ||
|
||
import Head from 'next/head'; | ||
import Box from '../../components/Box'; | ||
import Container from '../../components/Container'; | ||
import Spacer from '../../components/Spacer'; | ||
import Text from '../../components/Text'; | ||
|
||
import { GetStaticProps, InferGetStaticPropsType } from 'next'; | ||
import Link from 'next/link'; | ||
import config from 'src/config'; | ||
|
||
type Props = { | ||
posts: Post[]; | ||
}; | ||
|
||
export const getStaticProps: GetStaticProps<Props> = (async () => { | ||
return { props: { posts: allPosts } }; | ||
}) satisfies GetStaticProps<Props>; | ||
|
||
export default function PostPage({ | ||
posts, | ||
}: InferGetStaticPropsType<typeof getStaticProps>) { | ||
return ( | ||
<Box my={5}> | ||
<Head> | ||
<title>{config.getTitle('Blog')}</title> | ||
</Head> | ||
<Container maxWidth={845}> | ||
<Text fontSize={6} fontWeight="bold" textAlign="center"> | ||
<h1>Toilet Map Blog</h1> | ||
</Text> | ||
<Spacer mb={5} /> | ||
{posts.map((postData) => ( | ||
<Box key={postData._id} display="flex" flexDirection="column"> | ||
<Link | ||
href={postData._raw.flattenedPath} | ||
style={{ display: 'flex', gap: '.2rem' }} | ||
> | ||
<Text fontSize={4} fontWeight="bold"> | ||
<h2>{postData.title}</h2> | ||
</Text> | ||
</Link> | ||
<Box style={{ display: 'inline-flex', gap: '.2rem' }}> | ||
<Link | ||
href={postData.profileSocialUrl} | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<Text>{postData.author}</Text> | ||
</Link> | ||
<Text>—</Text> | ||
<Text> | ||
<time dateTime={postData.date}> | ||
{format(parseISO(postData.date), 'LLLL d, yyyy')} | ||
</time> | ||
</Text> | ||
</Box> | ||
</Box> | ||
))} | ||
</Container> | ||
</Box> | ||
); | ||
} |