diff --git a/src/app/api/hello/route.ts b/src/app/api/hello/route.ts new file mode 100644 index 0000000..55e747d --- /dev/null +++ b/src/app/api/hello/route.ts @@ -0,0 +1,5 @@ +import { NextResponse } from 'next/server'; + +export async function GET(request: Request) { + return NextResponse.json({ message: 'Hello from the API!' }); +}