diff --git a/app/Filament/Pages/Introduction.php b/app/Filament/Pages/Dashboard.php similarity index 72% rename from app/Filament/Pages/Introduction.php rename to app/Filament/Pages/Dashboard.php index b60a4530f..87c741908 100644 --- a/app/Filament/Pages/Introduction.php +++ b/app/Filament/Pages/Dashboard.php @@ -9,14 +9,18 @@ use App\Models\Server; use App\Models\User; use Filament\Pages\Page; -class Introduction extends Page +class Dashboard extends Page { - protected static ?string $navigationIcon = 'heroicon-o-document-text'; + protected static ?string $navigationIcon = 'tabler-layout-dashboard'; - protected static string $view = 'filament.pages.introduction'; + protected static string $view = 'filament.pages.dashboard'; protected ?string $heading = ''; + protected static ?string $title = 'Dashboard'; + + protected static ?string $slug = '/'; + public string $activeTab = 'nodes'; public function getViewData(): array diff --git a/resources/views/filament/pages/introduction.blade.php b/resources/views/filament/pages/dashboard.blade.php similarity index 100% rename from resources/views/filament/pages/introduction.blade.php rename to resources/views/filament/pages/dashboard.blade.php