2023-06-22 07:33:26 +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
|
|
|
{{ data_get_str($project, 'name')->limit(10) }} > Edit | MapleDeploy
|
2025-10-26 22:39:40 +00:00
|
|
|
</x-slot>
|
|
|
|
|
<form wire:submit='submit' class="flex flex-col pb-10">
|
|
|
|
|
<div class="flex gap-2">
|
|
|
|
|
<h1>{{ data_get_str($project, 'name')->limit(15) }}</h1>
|
|
|
|
|
<div class="flex items-end gap-2">
|
|
|
|
|
<x-forms.button type="submit">Save</x-forms.button>
|
|
|
|
|
<livewire:project.delete-project :disabled="!$project->isEmpty()" :project_id="$project->id" />
|
|
|
|
|
</div>
|
2024-03-21 13:30:35 +00:00
|
|
|
</div>
|
2025-10-26 22:39:40 +00:00
|
|
|
<div class="pt-2 pb-10">Edit project details here.</div>
|
|
|
|
|
<div class="flex gap-2">
|
|
|
|
|
<x-forms.input label="Name" id="name" />
|
|
|
|
|
<x-forms.input label="Description" id="description" />
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|