Deploy Ladill Hosting / deploy (push) Successful in 24s
Wire local notification inbox in the topbar, sync ladillhosting logo and hosting launcher icon, and fix signed-out page branding. Co-authored-by: Cursor <cursoragent@cursor.com>
18 lines
958 B
PHP
18 lines
958 B
PHP
<!DOCTYPE html>
|
||
<html lang="en" class="h-full">
|
||
<head>
|
||
<meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1">
|
||
<title>Signed out — Ladill Hosting</title>
|
||
@include('partials.favicon')
|
||
@vite(['resources/css/app.css'])
|
||
<meta http-equiv="refresh" content="2;url={{ 'https://'.config('app.platform_domain') }}">
|
||
</head>
|
||
<body class="flex h-full items-center justify-center bg-slate-100 font-sans">
|
||
<div class="text-center">
|
||
<img src="{{ asset('images/logo/ladillhosting-logo.svg') }}?v={{ @filemtime(public_path('images/logo/ladillhosting-logo.svg')) ?: '1' }}" alt="Ladill Hosting" class="mx-auto h-7 w-auto">
|
||
<p class="mt-6 text-sm text-slate-600">You’ve been signed out. Redirecting…</p>
|
||
<a href="{{ 'https://'.config('app.platform_domain') }}" class="mt-2 inline-block text-sm font-medium text-indigo-600 hover:underline">Go to ladill.com</a>
|
||
</div>
|
||
</body>
|
||
</html>
|