diff --git a/resources/views/layouts/partials/navbar.blade.php b/resources/views/layouts/partials/navbar.blade.php
index 32eb461..ba4e0ef 100644
--- a/resources/views/layouts/partials/navbar.blade.php
+++ b/resources/views/layouts/partials/navbar.blade.php
@@ -14,10 +14,14 @@
{{-- Log Out --}}
-
-
-
- Log Out
-
+
{{-- Toggler (mobile) --}}
diff --git a/routes/auth.php b/routes/auth.php
index 085b3c8..3c70ffe 100644
--- a/routes/auth.php
+++ b/routes/auth.php
@@ -15,8 +15,3 @@ Route::middleware('guest')->group(function () {
Route::post('logout', [LoginController::class, 'logout'])
->middleware('auth')
->name('logout');
-
-// Dashboard route (Livewire) for authenticated users only
-Route::get('dashboard', Dashboard::class)
- ->middleware('auth')
- ->name('dashboard');
diff --git a/routes/web.php b/routes/web.php
index 688872b..1a12b02 100644
--- a/routes/web.php
+++ b/routes/web.php
@@ -4,3 +4,7 @@ use App\Http\Controllers\Auth\LoginController;
use Illuminate\Support\Facades\Route;
use App\Livewire\Dashboard;
+// Dashboard route (Livewire) for authenticated users only
+Route::get('dashboard', Dashboard::class)
+ ->middleware('auth')
+ ->name('dashboard');