Replace all Coolify branding with MapleDeploy across 111 files: - Logo, favicon, and color palette (Canadian red scale, stone greys) - Fonts: Overlock for headings, Inter for body (self-hosted woff2/ttf) - All ~70 page titles updated to "| MapleDeploy" - Auth pages, navbar, footer, email templates, settings, boarding flow - Remove Hetzner provider, Coolify Cloud upsells, sponsorship popups - Disable telemetry (Sentry DSN null, undead.coolify.io ping disabled) - Point auto-update to MapleDeploy Forgejo registry image - Redirect help/support links to mapledeploy.ca/contact - Add AGPL source code link to Forgejo repo in navbar - OpenAPI docs rebranded to MapleDeploy
56 lines
2.2 KiB
PHP
56 lines
2.2 KiB
PHP
<div>
|
|
<x-slot:title>
|
|
Servers | MapleDeploy
|
|
</x-slot>
|
|
<div class="flex items-center gap-2">
|
|
<h1>Servers</h1>
|
|
@can('createAnyResource')
|
|
<x-modal-input buttonTitle="+ Add" title="New Server" :closeOutside="false">
|
|
<livewire:server.create />
|
|
</x-modal-input>
|
|
@endcan
|
|
</div>
|
|
<div class="subtitle">All your servers are here.</div>
|
|
<div class="grid gap-4 lg:grid-cols-2 -mt-1">
|
|
@forelse ($servers as $server)
|
|
<a href="{{ route('server.show', ['server_uuid' => data_get($server, 'uuid')]) }}" {{ wireNavigate() }}
|
|
@class([
|
|
'gap-2 border cursor-pointer coolbox group',
|
|
'border-red-500' =>
|
|
!$server->settings->is_reachable || $server->settings->force_disabled,
|
|
])>
|
|
<div class="flex flex-col justify-center mx-6">
|
|
<div class="font-bold dark:text-white">
|
|
{{ $server->name }}
|
|
</div>
|
|
<div class="description">
|
|
{{ $server->description }}</div>
|
|
<div class="flex gap-1 text-xs text-error">
|
|
@if (!$server->settings->is_reachable)
|
|
<span>Not reachable</span>
|
|
@endif
|
|
@if (!$server->settings->is_reachable && !$server->settings->is_usable)
|
|
&
|
|
@endif
|
|
@if (!$server->settings->is_usable)
|
|
<span>Not usable by Coolify</span>
|
|
@endif
|
|
@if ($server->settings->force_disabled)
|
|
<span>Disabled by the system</span>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
<div class="flex-1"></div>
|
|
</a>
|
|
@empty
|
|
<div>
|
|
<div>No servers found. Without a server, you won't be able to do much.</div>
|
|
</div>
|
|
@endforelse
|
|
@isset($error)
|
|
<div class="text-center text-error">
|
|
<span>{{ $error }}</span>
|
|
</div>
|
|
@endisset
|
|
</div>
|
|
</div>
|