Replace Coolify branding with MapleDeploy throughout the UI: logos, favicon, fonts (Overlock 900), color scheme, help links, and page titles. Remove GitHub Actions workflows and add Forgejo CI build workflow. Strip cloud-only features (subscription prompts, sponsor links, server creation cloud options).
31 lines
1.3 KiB
PHP
31 lines
1.3 KiB
PHP
<div>
|
|
<x-slot:title>
|
|
Shared Variables | MapleDeploy
|
|
</x-slot>
|
|
<div class="flex items-start gap-2">
|
|
<h1>Shared Variables</h1>
|
|
</div>
|
|
<div class="subtitle">Set Team / Project / Environment wide variables.</div>
|
|
|
|
<div class="flex flex-col gap-2 -mt-1">
|
|
<a class="coolbox group" href="{{ route('shared-variables.team.index') }}" {{ wireNavigate() }}>
|
|
<div class="flex flex-col justify-center mx-6">
|
|
<div class="box-title">Team wide</div>
|
|
<div class="box-description">Usable for all resources in a team.</div>
|
|
</div>
|
|
</a>
|
|
<a class="coolbox group" href="{{ route('shared-variables.project.index') }}" {{ wireNavigate() }}>
|
|
<div class="flex flex-col justify-center mx-6">
|
|
<div class="box-title">Project wide</div>
|
|
<div class="box-description">Usable for all resources in a project.</div>
|
|
</div>
|
|
</a>
|
|
<a class="coolbox group" href="{{ route('shared-variables.environment.index') }}" {{ wireNavigate() }}>
|
|
<div class="flex flex-col justify-center mx-6">
|
|
<div class="box-title">Environment wide</div>
|
|
<div class="box-description">Usable for all resources in an environment.</div>
|
|
</div>
|
|
</a>
|
|
|
|
</div>
|
|
</div>
|