Update post context buttons, page nav, dockerfile

This commit is contained in:
yuriko 🦊 2025-07-02 13:13:10 -04:00
parent e7b31a716c
commit b4d83e9a29
Signed by: jaiden
SSH key fingerprint: SHA256:f8tvveBoXBrKZIQDWLLcpQrKbATUCGg98x2N4YzkDM8
22 changed files with 124 additions and 48 deletions

View file

@ -20,8 +20,8 @@ Route::get('/', AppHome::class)->name('home');
// Authenticated routes
Route::middleware('auth')->group(function () {
Route::get('/upload', UploadPage::class)->name('upload');
Route::get('/profiles', UsersPage::class)->name('users');
Route::get('/profiles/{user}', ProfilePage::class);
Route::get('/users', UsersPage::class)->name('users');
Route::get('/phpinfo', function () { return phpinfo(); });
});