This commit is contained in:
Andras Bacsai 2023-09-27 22:39:10 +02:00
parent 20dca179fb
commit e61fcc77f9

View File

@ -12,7 +12,7 @@
<div class="grid justify-start grid-cols-1 gap-2 text-left xl:grid-cols-3"> <div class="grid justify-start grid-cols-1 gap-2 text-left xl:grid-cols-3">
<div class="box group" wire:click="setType('public')"> <div class="box group" wire:click="setType('public')">
<div class="flex flex-col mx-6"> <div class="flex flex-col mx-6">
<div class="text-xl font-bold text-white group-hover:text-white"> <div class="font-bold text-white group-hover:text-white">
Public Repository Public Repository
</div> </div>
<div class="text-xs group-hover:text-white"> <div class="text-xs group-hover:text-white">
@ -22,7 +22,7 @@
</div> </div>
<div class="box group" wire:click="setType('private-gh-app')"> <div class="box group" wire:click="setType('private-gh-app')">
<div class="flex flex-col mx-6"> <div class="flex flex-col mx-6">
<div class="text-xl font-bold text-white group-hover:text-white"> <div class="font-bold text-white group-hover:text-white">
Private Repository Private Repository
</div> </div>
<div class="text-xs group-hover:text-white"> <div class="text-xs group-hover:text-white">
@ -32,7 +32,7 @@
</div> </div>
<div class="box group" wire:click="setType('private-deploy-key')"> <div class="box group" wire:click="setType('private-deploy-key')">
<div class="flex flex-col mx-6"> <div class="flex flex-col mx-6">
<div class="text-xl font-bold text-white group-hover:text-white"> <div class="font-bold text-white group-hover:text-white">
Private Repository (with deploy key) Private Repository (with deploy key)
</div> </div>
<div class="text-xs group-hover:text-white"> <div class="text-xs group-hover:text-white">
@ -44,7 +44,7 @@
<div class="grid justify-start grid-cols-1 gap-2 text-left xl:grid-cols-3"> <div class="grid justify-start grid-cols-1 gap-2 text-left xl:grid-cols-3">
<div class="box group" wire:click="setType('dockerfile')"> <div class="box group" wire:click="setType('dockerfile')">
<div class="flex flex-col mx-6"> <div class="flex flex-col mx-6">
<div class="text-xl font-bold text-white group-hover:text-white"> <div class="font-bold text-white group-hover:text-white">
Based on a Dockerfile Based on a Dockerfile
</div> </div>
<div class="text-xs group-hover:text-white"> <div class="text-xs group-hover:text-white">
@ -54,7 +54,7 @@
</div> </div>
<div class="box group" wire:click="setType('docker-compose-empty')"> <div class="box group" wire:click="setType('docker-compose-empty')">
<div class="flex flex-col mx-6"> <div class="flex flex-col mx-6">
<div class="text-xl font-bold text-white group-hover:text-white"> <div class="font-bold text-white group-hover:text-white">
Based on a Docker Compose Based on a Docker Compose
</div> </div>
<div class="text-xs group-hover:text-white"> <div class="text-xs group-hover:text-white">
@ -67,7 +67,7 @@
<div class="grid justify-start grid-cols-1 gap-2 text-left xl:grid-cols-3"> <div class="grid justify-start grid-cols-1 gap-2 text-left xl:grid-cols-3">
<div class="box group" wire:click="setType('postgresql')"> <div class="box group" wire:click="setType('postgresql')">
<div class="flex flex-col mx-6"> <div class="flex flex-col mx-6">
<div class="text-xl font-bold text-white group-hover:text-white"> <div class="font-bold text-white group-hover:text-white">
New PostgreSQL New PostgreSQL
</div> </div>
<div class="text-xs group-hover:text-white"> <div class="text-xs group-hover:text-white">
@ -98,7 +98,7 @@
<button class="text-left box group" <button class="text-left box group"
wire:loading.attr="disabled" wire:click="setType('one-click-service-{{ $serviceName }}')"> wire:loading.attr="disabled" wire:click="setType('one-click-service-{{ $serviceName }}')">
<div class="flex flex-col mx-6"> <div class="flex flex-col mx-6">
<div class="text-xl font-bold text-white group-hover:text-white"> <div class="font-bold text-white group-hover:text-white">
{{ Str::headline($serviceName) }} {{ Str::headline($serviceName) }}
</div> </div>
@if (data_get($service, 'slogan')) @if (data_get($service, 'slogan'))