chore(ui): add empty dashboard page

This commit is contained in:
peaklabs-dev 2026-03-04 17:10:19 +01:00
parent 053628e2bf
commit 89a8b3cc89
No known key found for this signature in database
2 changed files with 8 additions and 0 deletions

View file

@ -0,0 +1,3 @@
<div class="min-h-screen bg-background text-foreground p-8">
<h1 class="text-3xl font-bold mb-6">Dashboard</h1>
</div>

View file

@ -1,3 +1,8 @@
<?php
declare(strict_types=1);
use Illuminate\Support\Facades\Route;
use Inertia\Inertia;
Route::get('/', fn () => Inertia::render('dashboard'));