19 lines
629 B
PHP
19 lines
629 B
PHP
{{--
|
|
503 — Service Unavailable / Maintenance Mode
|
|
--}}
|
|
@extends('errors._layout', [
|
|
'error_code' => 503,
|
|
'error_title' => 'We\'ll Be Right Back',
|
|
'error_message' => 'Skinbase is under scheduled maintenance. Check back soon.',
|
|
])
|
|
|
|
@section('badge', 'Maintenance')
|
|
|
|
@section('primary-cta')
|
|
<button onclick="window.location.reload()"
|
|
class="inline-flex items-center gap-2 rounded-xl bg-sky-500 hover:bg-sky-400 text-white font-semibold px-6 py-3 text-sm shadow-lg shadow-sky-900/30 transition-colors cursor-pointer">
|
|
<i class="fas fa-redo" aria-hidden="true"></i>
|
|
Check Again
|
|
</button>
|
|
@endsection
|