25 lines
1013 B
PHP
25 lines
1013 B
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">
|
|
{{-- Belt and braces with the X-Robots-Tag header: some crawlers read only one. --}}
|
|
<meta name="robots" content="noindex, nofollow, noarchive">
|
|
<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>
|
|
|
|
<h1 class="mt-8 text-2xl font-semibold tracking-tight text-ink">{{ __('coming_soon.title') }}</h1>
|
|
<p class="mt-3 text-sm leading-relaxed text-muted">{{ __('coming_soon.body') }}</p>
|
|
|
|
<p class="mt-8 text-xs text-faint">{{ __('coming_soon.contact') }}</p>
|
|
</main>
|
|
</body>
|
|
</html>
|