New notes

This commit is contained in:
2022-04-28 12:37:12 -04:00
parent dc761025fa
commit 19affa2f1f
16 changed files with 1362 additions and 21 deletions

View File

@@ -3,7 +3,7 @@ import Layout from '../../components/layout';
import date from '../../util/date';
import { getPostsMeta, PostMeta } from '../../util/slug';
function HomePage({ postsMeta }: { postsMeta: PostMeta[] }) {
function PostsPage({ postsMeta }: { postsMeta: PostMeta[] }) {
// todo: create a table-like user interface
return ( // wow this is horrible
<Layout name='Posts'>
@@ -35,4 +35,4 @@ export async function getStaticProps() {
};
}
export default HomePage;
export default PostsPage;