updated font reference and clean up

This commit is contained in:
2023-09-28 20:53:41 +10:00
parent fca3d8bcec
commit 08db8ef124
11 changed files with 78 additions and 74 deletions

3
app/post/[slug]/page.tsx Normal file
View File

@@ -0,0 +1,3 @@
export default function Post({ params }: { params: { slug: string } }) {
return <div>My Post: {params.slug}</div>;
}