Explorer
project
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<div class="min-h-screen bg-gradient-to-br from-slate-50 via-white to-indigo-50/40 font-sans text-slate-900 antialiased p-8 flex items-center justify-center">
<div class="relative max-w-md w-full">
<div class="absolute inset-0 bg-slate-900/20 backdrop-blur-sm rounded-2xl"></div>
<div class="relative bg-white ring-1 ring-slate-200 rounded-2xl p-6 shadow-2xl shadow-slate-900/20">
<div class="h-10 w-10 rounded-full bg-rose-50 flex items-center justify-center text-rose-600 text-lg ring-1 ring-rose-100">!</div>
<h3 class="mt-4 text-lg font-semibold tracking-tight">Delete project?</h3>
<p class="mt-1 text-sm text-slate-600 leading-relaxed">This action cannot be undone. All data associated with this project will be permanently removed.</p>
<div class="mt-6 flex gap-2 justify-end">
<button class="px-4 py-2 rounded-lg ring-1 ring-slate-200 text-sm font-medium text-slate-700 hover:bg-slate-50 transition">Cancel</button>
<button class="px-4 py-2 rounded-lg bg-rose-600 text-white text-sm font-medium hover:bg-rose-700 transition">Delete</button>
</div>
</div>
</div>
</div>
rloop.dev/p/Pr-P24