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
25 lines
1.1 KiB
PHP
25 lines
1.1 KiB
PHP
<div class="pb-5">
|
|
<h1>Settings</h1>
|
|
<div class="subtitle">Instance wide settings for MapleDeploy.</div>
|
|
<div class="navbar-main">
|
|
<nav class="flex items-center gap-6 min-h-10 whitespace-nowrap">
|
|
<a class="{{ request()->routeIs('settings.index') ? 'dark:text-white' : '' }}" {{ wireNavigate() }}
|
|
href="{{ route('settings.index') }}">
|
|
Configuration
|
|
</a>
|
|
<a class="{{ request()->routeIs('settings.backup') ? 'dark:text-white' : '' }}" {{ wireNavigate() }}
|
|
href="{{ route('settings.backup') }}">
|
|
Backup
|
|
</a>
|
|
<a class="{{ request()->routeIs('settings.email') ? 'dark:text-white' : '' }}" {{ wireNavigate() }}
|
|
href="{{ route('settings.email') }}">
|
|
Transactional Email
|
|
</a>
|
|
<a class="{{ request()->routeIs('settings.oauth') ? 'dark:text-white' : '' }}" {{ wireNavigate() }}
|
|
href="{{ route('settings.oauth') }}">
|
|
OAuth
|
|
</a>
|
|
<div class="flex-1"></div>
|
|
</nav>
|
|
</div>
|
|
</div>
|