31 lines
1.4 KiB
PHP
31 lines
1.4 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" class="h-full">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="robots" content="noindex, nofollow">
|
|
{{-- Comes back on its own: an update takes a minute, and nobody should have
|
|
to guess whether to keep hitting reload. --}}
|
|
<meta http-equiv="refresh" content="20">
|
|
<title>{{ config('app.name') }}</title>
|
|
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
|
|
@vite(['resources/css/app.css'])
|
|
</head>
|
|
<body class="grid min-h-full place-items-center bg-canvas px-6 py-16 text-center">
|
|
<main class="max-w-md">
|
|
<div class="mx-auto w-fit">
|
|
<x-ui.logo class="h-9" />
|
|
</div>
|
|
|
|
<div class="mx-auto mt-8 flex w-fit items-center gap-2 rounded-pill border border-accent-border bg-accent-bg px-3 py-1">
|
|
<span class="size-2 animate-pulse rounded-pill bg-accent" aria-hidden="true"></span>
|
|
<span class="text-xs font-semibold text-accent-text">{{ __('updating.badge') }}</span>
|
|
</div>
|
|
|
|
<h1 class="mt-5 text-2xl font-semibold tracking-tight text-ink">{{ __('updating.title') }}</h1>
|
|
<p class="mt-3 text-sm leading-relaxed text-muted">{{ __('updating.body') }}</p>
|
|
<p class="mt-8 text-xs text-faint">{{ __('updating.auto') }}</p>
|
|
</main>
|
|
</body>
|
|
</html>
|