mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
chore(ui): add empty dashboard page
This commit is contained in:
parent
053628e2bf
commit
89a8b3cc89
2 changed files with 8 additions and 0 deletions
3
resources/js/pages/dashboard.svelte
Normal file
3
resources/js/pages/dashboard.svelte
Normal 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>
|
||||
|
|
@ -1,3 +1,8 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
use Illuminate\Support\Facades\Route;
|
||||
use Inertia\Inertia;
|
||||
|
||||
Route::get('/', fn () => Inertia::render('dashboard'));
|
||||
|
|
|
|||
Loading…
Reference in a new issue