diff --git a/app/Http/Livewire/Waitlist/Index.php b/app/Http/Livewire/Waitlist/Index.php index 06d224afe..72d16b682 100644 --- a/app/Http/Livewire/Waitlist/Index.php +++ b/app/Http/Livewire/Waitlist/Index.php @@ -10,6 +10,7 @@ use Livewire\Component; class Index extends Component { public string $email; + public int $users = 0; public int $waitingInLine = 0; protected $rules = [ @@ -22,6 +23,7 @@ class Index extends Component public function mount() { $this->waitingInLine = Waitlist::whereVerified(true)->count(); + $this->users = User::count(); if (isDev()) { $this->email = 'waitlist@example.com'; } diff --git a/resources/views/livewire/boarding/index.blade.php b/resources/views/livewire/boarding/index.blade.php index 69505d820..bee5f04b7 100644 --- a/resources/views/livewire/boarding/index.blade.php +++ b/resources/views/livewire/boarding/index.blade.php @@ -115,9 +115,9 @@ @if ($privateKeyType === 'create') - Copy this to your server's ~/.ssh/authorized_keys - file. - + + ACTION REQUIRED: Copy the 'Public Key' to your server's ~/.ssh/authorized_keys + file. @endif Save diff --git a/resources/views/livewire/project/new/select.blade.php b/resources/views/livewire/project/new/select.blade.php index 3bada4dca..2e9e2f197 100644 --- a/resources/views/livewire/project/new/select.blade.php +++ b/resources/views/livewire/project/new/select.blade.php @@ -76,6 +76,10 @@ --}} +

Services

+
+ Ghost, Plausible, Wordpress, etc... Coming very very soon... +
@endif @if ($current_step === 'servers')
    @@ -135,10 +139,11 @@ @endif @if ($current_step === 'existing-postgresql') -
    - - Add Database - +
    + + Add Database + @endif diff --git a/resources/views/livewire/waitlist/index.blade.php b/resources/views/livewire/waitlist/index.blade.php index ad6e30508..833193b58 100644 --- a/resources/views/livewire/waitlist/index.blade.php +++ b/resources/views/livewire/waitlist/index.blade.php @@ -23,7 +23,8 @@ Join Waitlist - Waiting in the line: {{ $waitingInLine }} +
    People waiting in the line: {{ $waitingInLine }}
    +
    Already using Coolify Cloud: {{ $users }}
    This is a paid & hosted version of Coolify.
    See the pricing here.