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
12 lines
721 B
PHP
12 lines
721 B
PHP
<div class="flex flex-col w-full gap-2">
|
|
{{-- MapleDeploy branding --}}
|
|
<div>Your feedback helps us improve MapleDeploy. Thank you!</div>
|
|
<form wire:submit="submit" class="flex flex-col gap-4 pt-4">
|
|
<x-forms.input minlength="3" required id="subject" label="Subject" placeholder="Help with..."></x-forms.input>
|
|
<x-forms.textarea minlength="10" maxlength="1000" required rows="10" id="description" label="Description"
|
|
class="font-sans" spellcheck
|
|
placeholder="Having trouble with... Please provide as much information as possible."></x-forms.textarea>
|
|
<div></div>
|
|
<x-forms.button class="w-full mt-4" type="submit">Send</x-forms.button>
|
|
</form>
|
|
</div>
|