feat(Maintenance page)
Some checks failed
Deploy Roxane to Preprod / deploy (push) Failing after 1s

This commit is contained in:
2025-11-26 16:16:22 +01:00
parent c1bfbcceca
commit 9b0b99b12a
4 changed files with 123 additions and 25 deletions

View File

@@ -3,10 +3,14 @@
use Illuminate\Support\Facades\Route;
use Inertia\Inertia;
Route::get('/', function () {
Route::get('/welcome', function () {
return Inertia::render('welcome');
})->name('home');
Route::get('/', function () {
return Inertia::render('maintenance');
})->name('maintenance');
Route::middleware(['auth', 'verified'])->group(function () {
Route::get('dashboard', function () {
return Inertia::render('dashboard');