diff --git a/config/signed_out.php b/config/signed_out.php
index 43c6565..df3184e 100644
--- a/config/signed_out.php
+++ b/config/signed_out.php
@@ -1,7 +1,10 @@
'Ladill QR Plus',
- 'logo' => 'images/logo/ladillqrplus-logo.svg',
- 'description' => 'Your Ladill QR Plus session has ended. Sign in again to manage dynamic QR codes.',
+ 'title' => 'Ladill Link',
+ 'logo' => 'images/logo/ladilllink-logo.svg',
+ 'description' => 'Your Ladill Link session has ended. Sign in again to manage short links.',
+ 'gradient_from' => '#059669',
+ 'gradient_to' => '#10b981',
+ 'icon_wrapper_class' => 'bg-emerald-50 text-emerald-700',
];
diff --git a/resources/views/links/signed-out.blade.php b/resources/views/links/signed-out.blade.php
index 18cf93e..10d87e7 100644
--- a/resources/views/links/signed-out.blade.php
+++ b/resources/views/links/signed-out.blade.php
@@ -1,16 +1 @@
-
-
-
-
-
 }})
-
You have been signed out.
-
Sign in again
-
-
-
+@include('auth.signed-out')
diff --git a/routes/web.php b/routes/web.php
index 39be49e..3dd169e 100644
--- a/routes/web.php
+++ b/routes/web.php
@@ -23,7 +23,7 @@ Route::post('/logout', [SsoLoginController::class, 'logout'])->name('logout');
Route::get('/sso/logout-bridge', [SsoLoginController::class, 'logoutBridge'])->name('sso.logout-bridge');
Route::get('/sso/logout-frontchannel', [SsoLoginController::class, 'frontchannelLogout'])->name('sso.logout-frontchannel');
Route::get('/sso/platform-signed-out', [SsoLoginController::class, 'platformSignedOut'])->name('sso.platform-signed-out');
-Route::get('/signed-out', fn () => auth()->check() ? redirect()->route('link.dashboard') : view('links.signed-out'))->name('link.signed-out');
+Route::get('/signed-out', fn () => auth()->check() ? redirect()->route('link.dashboard') : view('auth.signed-out'))->name('link.signed-out');
Route::middleware(['auth', 'platform.session'])->group(function () {
Route::get('/wallet/balance', [WalletBalanceController::class, 'balance'])->name('wallet.balance');