Add homepage and make bridges look nice

This commit is contained in:
2026-02-06 23:09:51 +00:00
parent d406db9d18
commit d53748f8ae
16 changed files with 818 additions and 355 deletions

View File

@@ -2,7 +2,10 @@ import { json } from '@sveltejs/kit';
import type { RequestHandler } from './$types';
export const GET: RequestHandler = () => {
return json({ status: 'ok', uptime: process.uptime() }, {
status: 200
});
};
return json(
{ status: 'ok', uptime: process.uptime() },
{
status: 200
}
);
};