diff --git a/app/posts/page.tsx b/app/posts/page.tsx new file mode 100644 index 0000000..b30e7cb --- /dev/null +++ b/app/posts/page.tsx @@ -0,0 +1,13 @@ +import { db } from "@/lib/db" + +export default async function PostsPage() { + const posts = await db.post.findMany() + + return ( +