nimuli/resources/views/livewire/modals/delete-link.blade.php

27 lines
1.2 KiB
PHP

<div class="p-6">
<div class="flex items-start gap-4">
<div class="w-10 h-10 rounded-full bg-red/10 flex items-center justify-center flex-shrink-0">
<svg class="w-5 h-5 text-red" fill="none" viewBox="0 0 20 20" stroke="currentColor" stroke-width="1.5">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 2h2m-5 2h8l-1 12H6L5 4zm3 4v6m2-6v6"/>
</svg>
</div>
<div class="flex-1 min-w-0">
<h3 class="text-base font-semibold text-t1">Delete Link</h3>
<p class="mt-1.5 text-sm text-t2">
Delete <span class="text-t1 font-medium">{{ $linkTitle }}</span>? This cannot be undone. All click analytics will be permanently removed.
</p>
</div>
</div>
<div class="flex gap-3 mt-6 justify-end">
<button wire:click="closeModal"
class="px-4 py-2 bg-s2 text-t2 text-sm font-medium rounded-lg hover:text-t1 transition-colors border border-white/[.06]">
Cancel
</button>
<button wire:click="delete"
class="px-4 py-2 bg-red text-white text-sm font-medium rounded-lg hover:opacity-90 transition-opacity">
Delete Link
</button>
</div>
</div>