From 5a8eedb09181f37e244042696f8990e45f3ceeba Mon Sep 17 00:00:00 2001 From: swve Date: Tue, 21 May 2024 19:08:51 +0200 Subject: [PATCH] feat: add simple health check page --- apps/web/app/orgs/[orgslug]/health/page.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 apps/web/app/orgs/[orgslug]/health/page.tsx diff --git a/apps/web/app/orgs/[orgslug]/health/page.tsx b/apps/web/app/orgs/[orgslug]/health/page.tsx new file mode 100644 index 00000000..e9d89171 --- /dev/null +++ b/apps/web/app/orgs/[orgslug]/health/page.tsx @@ -0,0 +1,9 @@ +import React from 'react' + +function HealthPage() { + return ( +
OK
+ ) +} + +export default HealthPage \ No newline at end of file