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

19 lines
490 B
PHP

<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" class="dark">
<head>
@include('partials.head')
</head>
<body class="min-h-screen bg-gray-50 antialiased">
<div class="flex h-full">
<livewire:dashboard-sidebar :active="$activeNav ?? 'dashboard'"/>
<div class="flex flex-col flex-1 min-w-0 overflow-hidden">
<x-dashbord-topbar/>
<main class="">
{{ $slot }}
</main>
</div>
</div>
@livewireScripts
</body>
</html>