This page demonstrates how to interact with Next.js API routes.
GET /api/hello - Simple hello endpointGET /api/users - Get all usersPOST /api/users - Create a new userGET /api/users/[id] - Get a specific userPUT /api/users/[id] - Update a userDELETE /api/users/[id] - Delete a userTry testing these endpoints with tools like Postman, curl, or the browser!