first commit

This commit is contained in:
Beyhan Oğur
2026-04-26 22:12:36 +03:00
commit e881f38e4e
278 changed files with 24095 additions and 0 deletions

13
proxy.ts Normal file
View File

@@ -0,0 +1,13 @@
import { withAuth } from "next-auth/middleware";
export default function proxy(request: any) {
return withAuth(request, {
pages: {
signIn: "/login",
},
});
}
export const config = {
matcher: ["/dashboard/:path*"],
};