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
44 lines
2 KiB
PHP
44 lines
2 KiB
PHP
<div>
|
|
<x-slot:title>
|
|
Destinations | MapleDeploy
|
|
</x-slot>
|
|
<div class="flex items-center gap-2">
|
|
<h1>Destinations</h1>
|
|
@if ($servers->count() > 0)
|
|
@can('createAnyResource')
|
|
<x-modal-input buttonTitle="+ Add" title="New Destination">
|
|
<livewire:destination.new.docker />
|
|
</x-modal-input>
|
|
@endcan
|
|
@endif
|
|
</div>
|
|
<div class="subtitle">Network endpoints to deploy your resources.</div>
|
|
<div class="grid gap-4 lg:grid-cols-2 -mt-1">
|
|
@forelse ($servers as $server)
|
|
@forelse ($server->destinations() as $destination)
|
|
@if ($destination->getMorphClass() === 'App\Models\StandaloneDocker')
|
|
<a class="coolbox group" {{ wireNavigate() }}
|
|
href="{{ route('destination.show', ['destination_uuid' => data_get($destination, 'uuid')]) }}">
|
|
<div class="flex flex-col justify-center mx-6">
|
|
<div class="box-title">{{ $destination->name }}</div>
|
|
<div class="box-description">Server: {{ $destination->server->name }}</div>
|
|
</div>
|
|
</a>
|
|
@endif
|
|
@if ($destination->getMorphClass() === 'App\Models\SwarmDocker')
|
|
<a class="coolbox group" {{ wireNavigate() }}
|
|
href="{{ route('destination.show', ['destination_uuid' => data_get($destination, 'uuid')]) }}">
|
|
<div class="flex flex-col mx-6">
|
|
<div class="box-title">{{ $destination->name }}</div>
|
|
<div class="box-description">server: {{ $destination->server->name }}</div>
|
|
</div>
|
|
</a>
|
|
@endif
|
|
@empty
|
|
<div>No destinations found.</div>
|
|
@endforelse
|
|
@empty
|
|
<div>No servers found.</div>
|
|
@endforelse
|
|
</div>
|
|
</div>
|