<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noindex, nofollow">
<title>{{ config('app.name', 'Store') }} — Under Maintenance</title>
<style>
:root { --ac: {{ $brandColor ?? '#0d9488' }}; }
* { box-sizing: border-box; }
body {
margin: 0;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
background: #f8fafc;
color: #0f172a;
}
.card {
max-width: 480px;
width: 100%;
text-align: center;
background: #fff;
border: 1px solid #e5e7eb;
border-radius: 16px;
padding: 40px 32px;
box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.04);
}
.icon {
width: 56px; height: 56px;
margin: 0 auto 20px;
display: flex; align-items: center; justify-content: center;
background: color-mix(in srgb, var(--ac) 12%, white);
border-radius: 50%;
font-size: 28px;
}
h1 { font-size: 20px; margin: 0 0 12px; }
p { font-size: 14.5px; line-height: 1.6; color: #475569; margin: 0 0 8px; }
.eta {
margin-top: 16px;
display: inline-block;
font-size: 13px;
color: var(--ac);
background: color-mix(in srgb, var(--ac) 10%, white);
border: 1px solid color-mix(in srgb, var(--ac) 30%, white);
border-radius: 20px;
padding: 6px 14px;
}
</style>
</head>
<body>
<div class="card">
<div class="icon">🛠️</div>
<h1>{{ config('app.name', 'We') }} is currently under maintenance</h1>
<p>{{ $message }}</p>
@if ($estimatedBack)
<span class="eta">Expected back: {{ \Illuminate\Support\Carbon::parse($estimatedBack)->format('M j, Y g:i A') }}</span>
@endif
</div>
</body>
</html>