initial commit

This commit is contained in:
lucas
2022-05-03 02:53:19 -07:00
commit 455ab524fa
23 changed files with 7672 additions and 0 deletions

7
pages/admin/[slug].js Normal file
View File

@@ -0,0 +1,7 @@
export default function AdminPostEdit({ }) {
return (
<main>
<h1>Edit Post</h1>
</main>
)
}

7
pages/admin/index.js Normal file
View File

@@ -0,0 +1,7 @@
export default function AdminPostsPage({ }){
return (
<main>
</main>
)
}