undo ai slop

This commit is contained in:
Ilias Ism 2025-12-12 09:35:54 +01:00
parent 09f8992af1
commit 3b157bfe9f
2 changed files with 2 additions and 3 deletions

View file

@ -1,4 +1,3 @@
<<<<<<< HEAD
<nav class="flex flex-col flex-1 px-2 bg-white border-r dark:border-coolgray-200 border-neutral-300 dark:bg-base"
x-data="{
switchWidth() {

View file

@ -248,10 +248,10 @@ Route::middleware(['auth', 'verified'])->group(function () {
Route::get('/servers', ServerIndex::class)->name('server.index');
// Global deployments page - shows all deployments across all projects
// Route::get('/server/new', ServerCreate::class)->name('server.create');
Route::get('/deployments', GlobalDeploymentIndex::class)->name('deployment.index');
Route::get('/server/new', ServerCreate::class)->name('server.create');
Route::prefix('server/{server_uuid}')->group(function () {
Route::get('/', ServerShow::class)->name('server.show');