feat: add architecture, api routes and components

This commit is contained in:
2026-07-06 02:27:06 +02:00
parent 91dbfa7d77
commit 2fe32edc3a
31 changed files with 2796 additions and 148 deletions
+10
View File
@@ -0,0 +1,10 @@
import { NextResponse } from "next/server";
export async function POST() {
const response = NextResponse.json({ success: true });
// Hard delete the cookie
response.cookies.delete('admin_session');
return response;
}