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 }); } }