diff --git a/app/Livewire/Boarding/Index.php b/app/Livewire/Boarding/Index.php
index 387d6cd0b..110222fb4 100644
--- a/app/Livewire/Boarding/Index.php
+++ b/app/Livewire/Boarding/Index.php
@@ -167,6 +167,10 @@ public function getProxyType()
}
public function selectExistingPrivateKey()
{
+ if (is_null($this->selectedExistingPrivateKey)) {
+ $this->restartBoarding();
+ return;
+ }
$this->createdPrivateKey = PrivateKey::find($this->selectedExistingPrivateKey);
$this->privateKey = $this->createdPrivateKey->private_key;
$this->state = 'create-server';
diff --git a/app/Livewire/Project/Shared/Tags.php b/app/Livewire/Project/Shared/Tags.php
index 0977f18f8..92a08f117 100644
--- a/app/Livewire/Project/Shared/Tags.php
+++ b/app/Livewire/Project/Shared/Tags.php
@@ -28,7 +28,7 @@ public function addTag(string $id, string $name)
{
try {
if ($this->resource->tags()->where('id', $id)->exists()) {
- $this->dispatch('error', 'Duplicate tags.', "Tag $name already added.");
+ $this->dispatch('error', 'Duplicate tags.', "Tag $name already added.");
return;
}
$this->resource->tags()->syncWithoutDetaching($id);
@@ -66,7 +66,7 @@ public function submit()
$tags = str($this->new_tag)->trim()->explode(' ');
foreach ($tags as $tag) {
if ($this->resource->tags()->where('name', $tag)->exists()) {
- $this->dispatch('error', 'Duplicate tags.', "Tag $tag already added.");
+ $this->dispatch('error', 'Duplicate tags.', "Tag $tag already added.");
continue;
}
$found = Tag::where(['name' => $tag, 'team_id' => currentTeam()->id])->first();
diff --git a/app/View/Components/Forms/Checkbox.php b/app/View/Components/Forms/Checkbox.php
index 0047e7a4d..95fe2d4f4 100644
--- a/app/View/Components/Forms/Checkbox.php
+++ b/app/View/Components/Forms/Checkbox.php
@@ -19,7 +19,7 @@ public function __construct(
public ?string $helper = null,
public string|bool $instantSave = false,
public bool $disabled = false,
- public string $defaultClass = "dark:border-neutral-700 text-warning focus:ring-warning dark:bg-coolgray-100 rounded cursor-pointer dark:disabled:bg-base dark:disabled:cursor-not-allowed",
+ public string $defaultClass = "dark:border-neutral-700 text-coolgray-400 focus:ring-warning dark:bg-coolgray-100 rounded cursor-pointer dark:disabled:bg-base dark:disabled:cursor-not-allowed",
) {
//
}
diff --git a/app/View/Components/Forms/Textarea.php b/app/View/Components/Forms/Textarea.php
index c9d2c26ba..95e0ef5d2 100644
--- a/app/View/Components/Forms/Textarea.php
+++ b/app/View/Components/Forms/Textarea.php
@@ -25,8 +25,8 @@ public function __construct(
public ?string $helper = null,
public bool $realtimeValidation = false,
public bool $allowToPeak = true,
- public string $defaultClass = "block w-full py-1.5 rounded border-0 text-sm ring-inset ring-1 dark:bg-coolgray-100 dark:text-white text-black focus:ring-2 dark:focus:ring-coolgray-300 dark:ring-coolgray-300 scrollbar dark:read-only:text-neutral-500",
- public string $defaultClassInput = "block w-full py-1.5 rounded border-0 text-sm ring-inset ring-1 dark:bg-coolgray-100 dark:text-white text-black focus:ring-2 dark:focus:ring-coolgray-300 dark:ring-coolgray-300 dark:read-only:text-neutral-500"
+ public string $defaultClass = "input scrollbar",
+ public string $defaultClassInput = "input"
) {
//
}
diff --git a/public/svgs/github.svg b/public/svgs/github.svg
index 6c77b4144..270db203b 100644
--- a/public/svgs/github.svg
+++ b/public/svgs/github.svg
@@ -1 +1 @@
-
+
diff --git a/resources/css/app.css b/resources/css/app.css
index 7d7659a8a..efeb4af7c 100644
--- a/resources/css/app.css
+++ b/resources/css/app.css
@@ -4,27 +4,36 @@
html,
body {
- @apply bg-neutral-100 text-neutral-800 dark:bg-base dark:text-neutral-400;
+ @apply h-full bg-neutral-100 text-neutral-800 dark:bg-base dark:text-neutral-400;
}
body {
@apply text-sm antialiased scrollbar;
}
-.input, .select {
- @apply text-black dark:bg-coolgray-100 dark:text-white ring-neutral-300 dark:ring-coolgray-300 ;
+.input,
+.select {
+ @apply text-black dark:bg-coolgray-100 dark:text-white ring-neutral-300 dark:ring-coolgray-300;
}
+
/* Readonly */
-.input {
- @apply dark:read-only:text-neutral-500 dark:read-only:ring-0 dark:read-only:bg-coolgray-100/40 placeholder:text-neutral-300 dark:placeholder:text-neutral-700;
+.input {
+ @apply dark:read-only:text-neutral-500 dark:read-only:ring-0 dark:read-only:bg-coolgray-100/40 placeholder:text-neutral-300 dark:placeholder:text-neutral-700 read-only:text-neutral-500 read-only:bg-neutral-200;
}
+
/* Focus */
-.input, .select {
+.input,
+.select {
@apply focus:ring-2 dark:focus:ring-coolgray-300 focus:ring-neutral-400;
}
-.input, .select {
- @apply block w-full py-1.5 rounded border-0 text-sm pr-10 ring-1 ring-inset;
+.input,
+.select {
+ @apply block w-full py-1.5 rounded border-0 text-sm ring-1 ring-inset;
+}
+
+.input[type='password'] {
+ @apply pr-10;
}
option {
@@ -32,14 +41,15 @@ option {
}
.button {
- @apply flex items-center justify-center gap-2 px-3 py-1 text-sm font-normal normal-case rounded cursor-pointer bg-neutral-200 hover:bg-neutral-300 dark:bg-coolgray-200 dark:text-white dark:hover:bg-coolgray-100 dark:hover:dark:text-white dark:disabled:bg-coolgray-100/40 dark:disabled:text-neutral-800 min-w-fit hover:dark:text-white ;
+ @apply flex items-center justify-center gap-2 px-3 py-1 text-sm font-normal normal-case rounded cursor-pointer bg-neutral-200 hover:bg-neutral-300 dark:bg-coolgray-200 dark:text-white dark:hover:bg-coolgray-100 dark:hover:dark:text-white dark:disabled:bg-coolgray-100/40 dark:disabled:text-neutral-800 min-w-fit hover:dark:text-white focus-visible:outline-none;
}
+
button[isError]:not(:disabled) {
@apply text-white bg-red-600 hover:bg-red-700;
}
button[isHighlighted]:not(:disabled) {
- @apply bg-coollabs hover:bg-coollabs-100;
+ @apply text-white bg-coollabs hover:bg-coollabs-100;
}
@@ -60,7 +70,7 @@ h4 {
}
a {
- @apply hover:text-black dark:hover:text-white;
+ @apply hover:text-black dark:hover:text-white;
}
label {
@@ -108,7 +118,7 @@ .alert-error {
}
.dropdown-item {
- @apply relative flex cursor-pointer select-none dark:text-white dark:hover:bg-coollabs items-center pr-4 pl-2 py-1 text-xs justify-start outline-none transition-colors data-[disabled]:pointer-events-none data-[disabled]:opacity-50 gap-2 w-full;
+ @apply relative flex cursor-pointer select-none dark:text-white hover:bg-neutral-300 dark:hover:bg-coollabs items-center pr-4 pl-2 py-1 text-xs justify-start outline-none transition-colors data-[disabled]:pointer-events-none data-[disabled]:opacity-50 gap-2 w-full;
}
.badge {
@@ -127,9 +137,9 @@ .badge-error {
@apply bg-error;
}
-[type='checkbox']:checked {
+/* [type='checkbox']:checked {
background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='black' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
-}
+} */
.menu {
@apply flex items-center gap-1;
@@ -142,6 +152,7 @@ .menu-item {
.menu-item-active {
@apply text-black rounded-none dark:bg-coolgray-200 dark:text-warning bg-neutral-200;
}
+
.heading-item-active {
@apply text-black rounded-none dark:bg-coolgray-200 dark:text-warning;
}
@@ -152,7 +163,7 @@ .icon {
.scrollbar {
- @apply scrollbar-thumb-coollabs-100 scrollbar-track-coolgray-200 scrollbar-w-2;
+ @apply scrollbar-thumb-coollabs-100 dark:scrollbar-track-coolgray-200 scrollbar-track-neutral-200 scrollbar-w-2;
}
.main {
@@ -168,15 +179,15 @@ .navbar-main {
}
.loading {
- @apply w-4 text-warning;
+ @apply w-4 dark:text-warning text-coollabs;
}
.kbd-custom {
- @apply px-2 text-xs border border-dashed rounded border-neutral-700 text-warning;
+ @apply px-2 text-xs border border-dashed rounded border-neutral-700 dark:text-warning;
}
.box {
- @apply flex p-2 transition-colors cursor-pointer min-h-[4rem] dark:bg-coolgray-100 bg-white border border-neutral-200 dark:border-black hover:bg-neutral-200 dark:hover:bg-coollabs-100 dark:hover:text-white hover:no-underline;
+ @apply flex lg:flex-row flex-col p-2 transition-colors cursor-pointer min-h-[4rem] dark:bg-coolgray-100 bg-white border border-neutral-200 dark:border-black hover:bg-neutral-200 dark:hover:bg-coollabs-100 dark:hover:text-white hover:no-underline;
}
.on-box {
@@ -184,15 +195,17 @@ .on-box {
}
.box-without-bg {
- @apply flex p-2 transition-colors dark:hover:text-white hover:no-underline min-h-[4rem];
+ @apply flex p-2 transition-colors dark:hover:text-white hover:no-underline min-h-[4rem] dark:border-black border-neutral-200;
}
.box-title {
@apply font-bold text-black dark:text-white group-hover:dark:text-white;
}
+
.box-description {
@apply text-xs font-bold text-neutral-500 group-hover:dark:text-white group-hover:text-black;
}
+
.description {
@apply text-xs font-bold text-neutral-500 group-hover:dark:text-white group-hover:text-black;
}
@@ -232,11 +245,13 @@ .bg-coollabs-gradient {
}
.text-helper {
- @apply inline-block font-bold text-red-500 dark:text-warning;
+ @apply inline-block font-bold text-coollabs dark:text-warning;
}
+
.info-helper {
@apply cursor-pointer text-coollabs dark:text-warning;
}
+
.info-helper-popup {
@apply absolute z-40 hidden text-xs rounded text-neutral-700 group-hover:block dark:border-coolgray-500 border-neutral-900 dark:bg-coolgray-400 bg-neutral-200 dark:text-neutral-300;
}
diff --git a/resources/js/components/MagicBar.vue b/resources/js/components/MagicBar.vue
index 5a6ca8016..611ec0891 100644
--- a/resources/js/components/MagicBar.vue
+++ b/resources/js/components/MagicBar.vue
@@ -27,7 +27,7 @@
@@ -54,12 +54,12 @@
{{
sequenceState.sequence[sequenceState.currentActionIndex] }} name
will be:
- {{ search }}
+ {{ search }}
{{
sequenceState.sequence[sequenceState.currentActionIndex] }} name
will be:
- randomly generated (type to
+ randomly generated (type to
change)
@@ -186,7 +186,7 @@
+
+ class="absolute top-0 right-0 -mt-2 -mr-2 font-bold dark:text-warning">+
{{ action.name }}
diff --git a/resources/views/components/applications/advanced.blade.php b/resources/views/components/applications/advanced.blade.php
index 72e92f367..46ea54e99 100644
--- a/resources/views/components/applications/advanced.blade.php
+++ b/resources/views/components/applications/advanced.blade.php
@@ -1,50 +1,36 @@
-
-
-
Advanced
-
-
-
-
+
+
+ Advanced
+
+ @if ($application->status === 'running')
+
+
+
+
+
+
+
+
+ Force deploy (without
+ cache)
-
-
+ @else
+
+
+
+
+
+
+
+
+ Force deploy (without
+ cache)
+
+ @endif
+
diff --git a/resources/views/components/applications/links.blade.php b/resources/views/components/applications/links.blade.php
index bd82f75a1..a14d0e3ae 100644
--- a/resources/views/components/applications/links.blade.php
+++ b/resources/views/components/applications/links.blade.php
@@ -1,94 +1,100 @@
-
-
-
-
- Links
-
-
-
-
-
-
-
-
- @if (
- (data_get($application, 'fqdn') ||
- collect(json_decode($this->application->docker_compose_domains))->count() > 0 ||
- data_get($application, 'previews', collect([]))->count() > 0 ||
- data_get($application, 'ports_mappings_array')) &&
- data_get($application, 'settings.is_raw_compose_deployment_enabled') !== true)
- @if (data_get($application, 'gitBrancLocation'))
-
-
- Git Repository
-
- @endif
- @if (data_get($application, 'build_pack') === 'dockercompose')
- @foreach (collect(json_decode($this->application->docker_compose_domains)) as $fqdn)
- @if (data_get($fqdn, 'domain'))
- @foreach (explode(',', data_get($fqdn, 'domain')) as $domain)
-
-
-
-
-
-
- {{ getFqdnWithoutPort($domain) }}
-
- @endforeach
- @endif
- @endforeach
- @endif
- @if (data_get($application, 'fqdn'))
- @foreach (str(data_get($application, 'fqdn'))->explode(',') as $fqdn)
-
-
+
+
+ Links
+
+ @if (
+ (data_get($application, 'fqdn') ||
+ collect(json_decode($this->application->docker_compose_domains))->count() > 0 ||
+ data_get($application, 'previews', collect([]))->count() > 0 ||
+ data_get($application, 'ports_mappings_array')) &&
+ data_get($application, 'settings.is_raw_compose_deployment_enabled') !== true)
+ @if (data_get($application, 'gitBrancLocation'))
+
+
+ Git Repository
+
+ @endif
+ @if (data_get($application, 'build_pack') === 'dockercompose')
+ @foreach (collect(json_decode($this->application->docker_compose_domains)) as $fqdn)
+ @if (data_get($fqdn, 'domain'))
+ @foreach (explode(',', data_get($fqdn, 'domain')) as $domain)
+
+
- {{ getFqdnWithoutPort($fqdn) }}
+ {{ getFqdnWithoutPort($domain) }}
@endforeach
@endif
- @if (data_get($application, 'previews', collect([]))->count() > 0)
- @foreach (data_get($application, 'previews') as $preview)
- @if (data_get($preview, 'fqdn'))
-
-
-
-
-
-
-
- PR{{ data_get($preview, 'pull_request_id') }} |
- {{ data_get($preview, 'fqdn') }}
-
- @endif
- @endforeach
+ @endforeach
+ @endif
+ @if (data_get($application, 'fqdn'))
+ @foreach (str(data_get($application, 'fqdn'))->explode(',') as $fqdn)
+
+
+
+
+
+
+ {{ getFqdnWithoutPort($fqdn) }}
+
+ @endforeach
+ @endif
+ @if (data_get($application, 'previews', collect([]))->count() > 0)
+ @foreach (data_get($application, 'previews') as $preview)
+ @if (data_get($preview, 'fqdn'))
+
+
+
+
+
+
+
+ PR{{ data_get($preview, 'pull_request_id') }} |
+ {{ data_get($preview, 'fqdn') }}
+
@endif
- @if (data_get($application, 'ports_mappings_array'))
- @foreach ($application->ports_mappings_array as $port)
- @if ($application->destination->server->id === 0)
+ @endforeach
+ @endif
+ @if (data_get($application, 'ports_mappings_array'))
+ @foreach ($application->ports_mappings_array as $port)
+ @if ($application->destination->server->id === 0)
+
+
+
+
+
+
+
+ Port {{ $port }}
+
+ @else
+
+
+
+
+
+
+
+ {{ $application->destination->server->ip }}:{{ explode(':', $port)[0] }}
+
+ @if (count($application->additional_servers) > 0)
+ @foreach ($application->additional_servers as $server)
+ href="http://{{ $server->ip }}:{{ explode(':', $port)[0] }}">
@@ -98,45 +104,14 @@ class="absolute top-0 z-50 mt-6 min-w-max" x-cloak>
- Port {{ $port }}
+ {{ $server->ip }}:{{ explode(':', $port)[0] }}
- @else
-
-
-
-
-
-
-
- {{ $application->destination->server->ip }}:{{ explode(':', $port)[0] }}
-
- @if (count($application->additional_servers) > 0)
- @foreach ($application->additional_servers as $server)
-
-
-
-
-
-
-
- {{ $server->ip }}:{{ explode(':', $port)[0] }}
-
- @endforeach
- @endif
- @endif
- @endforeach
+ @endforeach
+ @endif
@endif
- @else
-
No links available
- @endif
-
-
-
+ @endforeach
+ @endif
+ @else
+
No links available
+ @endif
+
diff --git a/resources/views/components/boarding-step.blade.php b/resources/views/components/boarding-step.blade.php
index 3b1e5324e..98ec53ad6 100644
--- a/resources/views/components/boarding-step.blade.php
+++ b/resources/views/components/boarding-step.blade.php
@@ -1,15 +1,15 @@
-
-
{{ $title }}
+
+
{{ $title }}
@isset($question)
-
+
{{ $question }}
@endisset
@if ($actions)
-
+
{{ $actions }}
@endif
diff --git a/resources/views/components/dropdown.blade.php b/resources/views/components/dropdown.blade.php
new file mode 100644
index 000000000..097a490ab
--- /dev/null
+++ b/resources/views/components/dropdown.blade.php
@@ -0,0 +1,23 @@
+
+
+
+ {{ $title }}
+
+
+
+
+
+
+
+
diff --git a/resources/views/components/external-link.blade.php b/resources/views/components/external-link.blade.php
index 7c97d74a1..6991e0637 100644
--- a/resources/views/components/external-link.blade.php
+++ b/resources/views/components/external-link.blade.php
@@ -1 +1,7 @@
-
+
+
+
+
+
+
diff --git a/resources/views/components/forms/checkbox.blade.php b/resources/views/components/forms/checkbox.blade.php
index 749c7a21a..f3e3d5c9e 100644
--- a/resources/views/components/forms/checkbox.blade.php
+++ b/resources/views/components/forms/checkbox.blade.php
@@ -16,4 +16,3 @@
@if ($instantSave) wire:loading.attr="disabled" wire:click='{{ $instantSave === 'instantSave' || $instantSave == '1' ? 'instantSave' : $instantSave }}'
wire:model={{ $id }} @else wire:model={{ $value ?? $id }} @endif />
-
diff --git a/resources/views/components/loading.blade.php b/resources/views/components/loading.blade.php
index 78a1f9726..7ee3b1d1a 100644
--- a/resources/views/components/loading.blade.php
+++ b/resources/views/components/loading.blade.php
@@ -3,7 +3,7 @@
@if (isset($text))
{{ $text }}
@endif
-
@endif
@endif
-
+
-
Cancel
+ Cancel
@if ($attributes->whereStartsWith('wire:click')->first())
diff --git a/resources/views/components/pricing-plans.blade.php b/resources/views/components/pricing-plans.blade.php
index b58977259..cbfe7acd3 100644
--- a/resources/views/components/pricing-plans.blade.php
+++ b/resources/views/components/pricing-plans.blade.php
@@ -5,7 +5,7 @@
+ class="grid grid-cols-2 p-1 text-xs font-semibold leading-5 text-center rounded dark:text-white gap-x-1 bg-white/5">
Payment frequency
@@ -23,11 +23,11 @@ class="sr-only">
@if (config('constants.limits.trial_period') > 0)
{{ config('constants.limits.trial_period') }}
+ class="font-bold dark:text-warning">{{ config('constants.limits.trial_period') }}
days trial included on all plans, without credit card details.
@endif
-
Save
10% annually with the yearly plans.
+
Save 10% annually with the yearly plans.
@@ -39,14 +39,14 @@ class="font-bold text-warning">{{ config('constants.limits.trial_period') }}
Get Started
-
Start self-hosting without limits with
+
Start self-hosting without limits with
our
OSS version. Same features as the paid version, but you have to manage by yourself.
--}}
For the detailed list of features, please visit our landing page:
coolify.io
+ class="font-bold underline dark:text-white" href="https://coolify.io">coolify.io
@@ -78,16 +78,16 @@ class="grid max-w-sm grid-cols-1 -mt-16 divide-y divide-coolgray-500 isolate gap
-
Connect 2 servers
-
-
-
10 servers
-
-
-
-
-
-
+
-
+
Once you connected your server, Coolify will start managing it and do a
lot of administrative tasks for you. You can also write your own scripts to
- automate your server* .
+ automate your server* .
-
+
-
+
@@ -356,7 +356,7 @@ class="grid max-w-sm grid-cols-1 -mt-16 divide-y divide-coolgray-500 isolate gap
-
+
-
+
@@ -389,12 +389,12 @@ class="grid max-w-sm grid-cols-1 -mt-16 divide-y divide-coolgray-500 isolate gap
Programmatically deploy, query, and manage your servers & resources.
Integrate to your CI/CD pipelines, or build your own custom integrations. *
+ class="dark:text-warning">*
-
+
*
Git integration is default today. We support hosted (github.com,
- gitlab.com* ) or self-hosted*
+ gitlab.com* ) or self-hosted*
(Github Enterprise, Gitlab) Git repositories.
-
- * Some features are work in progress and will be available soon.
+ * Some features are work in progress and will be available soon.
--}}
@isset($other)
diff --git a/resources/views/components/resource-view.blade.php b/resources/views/components/resource-view.blade.php
index a6bfef53c..6857a0dc0 100644
--- a/resources/views/components/resource-view.blade.php
+++ b/resources/views/components/resource-view.blade.php
@@ -1,5 +1,5 @@
!$upgrade,
'hover:border-red-500 cursor-not-allowed' => $upgrade,
]) @if (!$upgrade) wire:click={{ $wire }} @endif>
@@ -9,7 +9,7 @@
{{ $title }}
- @if($upgrade)
+ @if ($upgrade)
{{ $upgrade }}
@else
diff --git a/resources/views/components/resources/breadcrumbs.blade.php b/resources/views/components/resources/breadcrumbs.blade.php
index 4a4ea86f2..5b0956c93 100644
--- a/resources/views/components/resources/breadcrumbs.blade.php
+++ b/resources/views/components/resources/breadcrumbs.blade.php
@@ -7,7 +7,7 @@
-
-
-
count() > 0)
-
-
-
- Links
-
-
-
-
-
-
-
-
+
+
+ Links
+
+ @foreach ($links as $link)
+
+
+
+
+
+
+ {{ $link }}
+
+ @endforeach
+
@endif
diff --git a/resources/views/components/slide-over.blade.php b/resources/views/components/slide-over.blade.php
index 4b342becd..09f7d4fdc 100644
--- a/resources/views/components/slide-over.blade.php
+++ b/resources/views/components/slide-over.blade.php
@@ -8,7 +8,7 @@
+ class="fixed inset-0 dark:bg-black bg-opacity-60">
@@ -23,7 +23,7 @@ class="fixed inset-0 bg-black bg-opacity-60">
'max-w-4xl w-screen' => $fullScreen,
])>
+ class="flex flex-col h-full py-6 overflow-hidden border-l shadow-lg bg-neutral-50 dark:bg-base dark:border-neutral-800 border-neutral-200">
diff --git a/resources/views/components/status/degraded.blade.php b/resources/views/components/status/degraded.blade.php
index d91051c8e..d48e1898c 100644
--- a/resources/views/components/status/degraded.blade.php
+++ b/resources/views/components/status/degraded.blade.php
@@ -5,11 +5,11 @@
-
+
{{ str($status)->before(':')->headline() }}
@if (!str($status)->startsWith('Proxy') && !str($status)->contains('('))
-
({{ str($status)->after(':') }})
+
({{ str($status)->after(':') }})
@endif
diff --git a/resources/views/components/status/restarting.blade.php b/resources/views/components/status/restarting.blade.php
index d43a3a719..7cb25128d 100644
--- a/resources/views/components/status/restarting.blade.php
+++ b/resources/views/components/status/restarting.blade.php
@@ -5,11 +5,11 @@
-
+
{{ str($status)->before(':')->headline() }}
@if (!str($status)->startsWith('Proxy') && !str($status)->contains('('))
-
({{ str($status)->after(':') }})
+
({{ str($status)->after(':') }})
@endif
diff --git a/resources/views/components/status/running.blade.php b/resources/views/components/status/running.blade.php
index 5bcb45cf5..249ce51c6 100644
--- a/resources/views/components/status/running.blade.php
+++ b/resources/views/components/status/running.blade.php
@@ -9,7 +9,7 @@
{{ str($status)->before(':')->headline() }}
@if (!str($status)->startsWith('Proxy') && !str($status)->contains('('))
-
({{ str($status)->after(':') }})
+
({{ str($status)->after(':') }})
@endif
diff --git a/resources/views/components/use-magic-bar.blade.php b/resources/views/components/use-magic-bar.blade.php
index 60d2f3cab..3991e5958 100644
--- a/resources/views/components/use-magic-bar.blade.php
+++ b/resources/views/components/use-magic-bar.blade.php
@@ -1,7 +1,7 @@
@if (isset($link))
Create a new one
-
+
here.
{{-- @else
diff --git a/resources/views/errors/401.blade.php b/resources/views/errors/401.blade.php
index c0cfa1148..46537d578 100644
--- a/resources/views/errors/401.blade.php
+++ b/resources/views/errors/401.blade.php
@@ -2,7 +2,7 @@
-
401
+
401
You shall not pass!
You don't have permission to access this page.
diff --git a/resources/views/errors/403.blade.php b/resources/views/errors/403.blade.php
index 2b19498c0..5055869c8 100644
--- a/resources/views/errors/403.blade.php
+++ b/resources/views/errors/403.blade.php
@@ -2,7 +2,7 @@
-
403
+
403
You shall not pass!
You don't have permission to access this page.
diff --git a/resources/views/errors/404.blade.php b/resources/views/errors/404.blade.php
index 233e11736..0972b4fc8 100644
--- a/resources/views/errors/404.blade.php
+++ b/resources/views/errors/404.blade.php
@@ -2,7 +2,7 @@
-
404
+
404
How did you got here?
Sorry, we couldn’t find the page you’re looking
for.
diff --git a/resources/views/errors/419.blade.php b/resources/views/errors/419.blade.php
index fa4b7d5c1..9bfd96b3a 100644
--- a/resources/views/errors/419.blade.php
+++ b/resources/views/errors/419.blade.php
@@ -2,7 +2,7 @@
-
419
+
419
This page is definitely old, not like you!
Sorry, we couldn’t find the page you’re looking
for.
diff --git a/resources/views/errors/429.blade.php b/resources/views/errors/429.blade.php
index d2cfa39f1..b02e834a3 100644
--- a/resources/views/errors/429.blade.php
+++ b/resources/views/errors/429.blade.php
@@ -2,7 +2,7 @@
-
429
+
429
Woah, slow down there!
You're making too many requests. Please wait a few
seconds before trying again.
diff --git a/resources/views/errors/500.blade.php b/resources/views/errors/500.blade.php
index a9e41f184..ab8ca42dd 100644
--- a/resources/views/errors/500.blade.php
+++ b/resources/views/errors/500.blade.php
@@ -2,7 +2,7 @@
-
500
+
500
Something is not okay, are you okay?
There has been an error, we are working on it.
diff --git a/resources/views/errors/503.blade.php b/resources/views/errors/503.blade.php
index b3712d484..74f0a8018 100644
--- a/resources/views/errors/503.blade.php
+++ b/resources/views/errors/503.blade.php
@@ -2,7 +2,7 @@
-
503
+
503
We are working on serious things.
Service Unavailable. Be right back. Thanks for your
patience.
diff --git a/resources/views/layouts/app.blade.php b/resources/views/layouts/app.blade.php
index 450aa40c2..dcbeede5d 100644
--- a/resources/views/layouts/app.blade.php
+++ b/resources/views/layouts/app.blade.php
@@ -16,7 +16,7 @@
Close sidebar
-
diff --git a/resources/views/layouts/boarding.blade.php b/resources/views/layouts/boarding.blade.php
index b9200345f..f65e14a00 100644
--- a/resources/views/layouts/boarding.blade.php
+++ b/resources/views/layouts/boarding.blade.php
@@ -1,13 +1,7 @@
@extends('layouts.base')
@section('body')
-
-
-
- {{ $slot }}
- {{--
-
+
{{ $slot }}
-
- --}}
+
@parent
@endsection
diff --git a/resources/views/livewire/boarding/index.blade.php b/resources/views/livewire/boarding/index.blade.php
index 5e5df0bad..c254a003b 100644
--- a/resources/views/livewire/boarding/index.blade.php
+++ b/resources/views/livewire/boarding/index.blade.php
@@ -1,9 +1,9 @@
@php use App\Enums\ProxyTypes; @endphp
-
-
+
+
@if ($state === 'welcome')
-
Welcome to Coolify
-
Let me help you set up the basics.
+
Welcome to Coolify
+
Let me help you set up the basics.
Get
Started
@@ -35,7 +35,7 @@
Telegram, Email, etc.) when something goes wrong, or an action is needed from your side.
- Next
+ Next
@@ -65,7 +65,7 @@
Check this documentation for further help.
- Check again
@endif
@@ -91,14 +91,14 @@
Do you have your own SSH Private Key?
- Yes
- No (create one for me)
@if (count($privateKeys) > 0)
-