style: added shadcn-ui

This commit is contained in:
Riccardo
2023-12-05 20:13:29 +01:00
parent 1b0919a460
commit 78de374cba
45 changed files with 1463 additions and 1340 deletions

View File

@@ -28,7 +28,7 @@ export async function POST(request: Request) {
});
const message: z.infer<typeof ResponseSchema> = {
message: `Thank you for confirming the subscripion!`
message: `Thank you for confirming the subscription, ${user.email}!`
};
return ApiResponse(200, JSON.stringify(message));