New design

This commit is contained in:
2025-12-20 17:44:35 +01:00
parent c693f7c7ed
commit bc25bb1626
12 changed files with 826 additions and 299 deletions

View File

@@ -7,15 +7,14 @@ use App\Livewire\Settings\TwoFactor;
use Illuminate\Support\Facades\Route;
use Laravel\Fortify\Features;
use App\Livewire\HomePage;
use App\Livewire\Person\Search as PersonSearch;
use App\Livewire\Person\Show as PersonShow;
Route::get('/', function () {
return view('welcome');
})->name('home');
Route::get('/', HomePage::class)->name('home');
Route::get('/person', PersonSearch::class)->name('person.search');
Route::get('/person/{personId}', PersonShow::class)->name('person.show');
Route::get('/ledamot', PersonSearch::class)->name('person.search');
Route::get('/ledamot/{personId}', PersonShow::class)->name('person.show');
Route::view('dashboard', 'dashboard')
->middleware(['auth', 'verified'])