kushal-saha 4a5436a3b4 chore: restructure views and add Livewire components for dashboard functionality
- remove flux dashboard
- add DTOs for the connecter services

Deps:
- spatie/laravel-data
- blade-icons (lucide-icons)
- tailwind-merge
2026-05-08 07:20:59 +00:00

12 lines
221 B
PHP

<?php
declare(strict_types=1);
use Illuminate\Support\Facades\Route;
Route::view('/', 'welcome')->name('home');
Route::livewire('dashboard', 'pages::dashboard')->name('dashboard');
require __DIR__ . '/settings.php';