added neon auth

This commit is contained in:
2026-05-16 17:32:23 +02:00
parent d9fd8a46de
commit 02e10a8b8a
12 changed files with 4698 additions and 106 deletions
+17
View File
@@ -0,0 +1,17 @@
import { AuthView } from "@neondatabase/auth/react";
export const dynamicParams = false;
export default async function AuthPage({
params,
}: {
params: Promise<{ path: string }>;
}) {
const { path } = await params;
return (
<main className="container mx-auto flex grow flex-col items-center justify-center gap-3 self-center p-4 md:p-6">
<AuthView path={path} />
</main>
);
}