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
39 lines
1.7 KiB
PHP
39 lines
1.7 KiB
PHP
<x-layout>
|
|
<x-slot:title>
|
|
Sources | MapleDeploy
|
|
</x-slot>
|
|
<div class="flex items-center gap-2">
|
|
<h1>Sources</h1>
|
|
@can('createAnyResource')
|
|
<x-modal-input buttonTitle="+ Add" title="New GitHub App" :closeOutside="false">
|
|
<livewire:source.github.create />
|
|
</x-modal-input>
|
|
@endcan
|
|
</div>
|
|
<div class="subtitle">Git sources for your applications.</div>
|
|
<div class="grid gap-4 lg:grid-cols-2 -mt-1">
|
|
@forelse ($sources as $source)
|
|
@if ($source->getMorphClass() === 'App\Models\GithubApp')
|
|
<a class="flex gap-2 text-center hover:no-underline coolbox group"
|
|
{{ wireNavigate() }}
|
|
href="{{ route('source.github.show', ['github_app_uuid' => data_get($source, 'uuid')]) }}">
|
|
{{-- <x-git-icon class="dark:text-white w-8 h-8 mt-1" git="{{ $source->getMorphClass() }}" /> --}}
|
|
<div class="text-left dark:group-hover:text-white flex flex-col justify-center mx-6">
|
|
<div class="box-title">{{ $source->name }}</div>
|
|
@if (is_null($source->app_id))
|
|
<span class="box-description text-error! ">Configuration is not finished.</span>
|
|
@else
|
|
@if ($source->organization)
|
|
<span class="box-description">Organization: {{ $source->organization }}</span>
|
|
@endif
|
|
@endif
|
|
</div>
|
|
</a>
|
|
@endif
|
|
@empty
|
|
<div>
|
|
<div>No sources found.</div>
|
|
</div>
|
|
@endforelse
|
|
</div>
|
|
</x-layout>
|