switch to bun, update all packages

This commit is contained in:
2026-03-10 11:00:39 +01:00
parent 276c3dd75f
commit 9a7e8922f8
57 changed files with 4156 additions and 11347 deletions

View File

@@ -1,15 +1,15 @@
'use server'
import { SignedIn } from "@clerk/nextjs";
import { Show } from "@clerk/nextjs";
export default async function AdminPage() {
return (
<SignedIn>
<Show when="signed-in">
<main className="flex min-h-screen flex-col items-center justify-center">
<div>
hello admin
</div>
</main>
</SignedIn>
</Show>
)
}