2024-04-26 12:59:03 +00:00
|
|
|
<div>
|
2024-06-07 09:01:10 +00:00
|
|
|
<x-slot:title>
|
feat(branding): apply MapleDeploy branding to Coolify fork
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
2026-02-08 22:34:51 +00:00
|
|
|
Project Variables | MapleDeploy
|
2024-06-07 09:01:10 +00:00
|
|
|
</x-slot>
|
2024-04-26 12:59:03 +00:00
|
|
|
<div class="flex gap-2">
|
|
|
|
|
<h1>Projects</h1>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="subtitle">List of your projects.</div>
|
|
|
|
|
<div class="flex flex-col gap-2">
|
|
|
|
|
@forelse ($projects as $project)
|
2025-11-28 12:55:54 +00:00
|
|
|
<a class="coolbox group"
|
2025-12-17 11:09:13 +00:00
|
|
|
href="{{ route('shared-variables.project.show', ['project_uuid' => data_get($project, 'uuid')]) }}" {{ wireNavigate() }}>
|
2024-04-26 12:59:03 +00:00
|
|
|
<div class="flex flex-col justify-center mx-6 ">
|
|
|
|
|
<div class="box-title">{{ $project->name }}</div>
|
|
|
|
|
<div class="box-description ">
|
|
|
|
|
{{ $project->description }}</div>
|
|
|
|
|
</div>
|
|
|
|
|
</a>
|
|
|
|
|
@empty
|
|
|
|
|
<div>
|
|
|
|
|
<div>No project found.</div>
|
|
|
|
|
</div>
|
|
|
|
|
@endforelse
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|