2024-01-07 15:23:41 +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) }} > New | MapleDeploy
|
2024-06-07 09:01:10 +00:00
|
|
|
</x-slot>
|
2024-01-07 15:23:41 +00:00
|
|
|
@if ($type === 'public')
|
|
|
|
|
<livewire:project.new.public-git-repository :type="$type" />
|
|
|
|
|
@elseif ($type === 'private-gh-app')
|
|
|
|
|
<livewire:project.new.github-private-repository :type="$type" />
|
|
|
|
|
@elseif ($type === 'private-deploy-key')
|
|
|
|
|
<livewire:project.new.github-private-repository-deploy-key :type="$type" />
|
|
|
|
|
@elseif ($type === 'dockerfile')
|
|
|
|
|
<livewire:project.new.simple-dockerfile :type="$type" />
|
|
|
|
|
@elseif ($type === 'docker-compose-empty')
|
|
|
|
|
<livewire:project.new.docker-compose :type="$type" />
|
|
|
|
|
@elseif ($type === 'docker-image')
|
|
|
|
|
<livewire:project.new.docker-image :type="$type" />
|
|
|
|
|
@else
|
|
|
|
|
<livewire:project.new.select />
|
|
|
|
|
@endif
|
|
|
|
|
</div>
|