feat(ui): port error pages, standardize fonts to Geist, and add health status page

This commit is contained in:
dyzulk
2025-12-31 10:50:50 +07:00
parent 37948c4682
commit dca9ad1799
26 changed files with 1596 additions and 277 deletions

View File

@@ -3,7 +3,7 @@
use Illuminate\Support\Facades\Route;
Route::get('/', function () {
return response()->json(['status' => 'ok', 'service' => 'trustlab-api']);
return view('welcome');
});
use App\Http\Controllers\AuthController;