Files
timebank-cc-public/resources/views/livewire/admin/maintenance-banner.blade.php
Ronald Huynen 2547717edb Initial commit
2026-03-23 21:37:59 +01:00

13 lines
481 B
PHP

<div>
@if($maintenanceMode)
<div class="bg-theme-background">
<div class="max-w-full sm:mx-auto mr-16 ml-2 bg-theme-background text-2xs sm:text-sm text-center text-red-700 py-2">
<span class="font-semibold">
<x-icon class="mr-1 inline h-5 w-5" name="exclamation-triangle" />
{{ __('Site is currently in maintenance mode') }}
</span>
</div>
</div>
@endif
</div>