Initial commit

This commit is contained in:
2026-04-30 20:22:49 +05:30
parent b710d5e6a1
commit 1fd65261b4
104 changed files with 5443 additions and 114 deletions
+15
View File
@@ -0,0 +1,15 @@
import { NextResponse } from "next/server";
export async function POST(req: Request) {
try {
const body = await req.json();
console.log("FORM DATA:", body);
return NextResponse.json({ success: true });
} catch (error) {
console.error(error);
return NextResponse.json({ error: "Something went wrong" }, { status: 500 });
}
}