Toggle navigation
☰
HTML
CSS
Scripting
Database
<!doctype html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Tailwind CSS Empty State</title> <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4.2.1"></script> </head> <body class="bg-gray-50 flex justify-center items-center min-h-screen p-6 antialiased"> <div class="max-w-md w-full text-center space-y-8"> <!-- Decorative Icon --> <div class="relative inline-flex items-center justify-center"> <div class="h-40 w-40 bg-indigo-50 rounded-full animate-pulse"></div> <div class="absolute inset-0 flex items-center justify-center"> <div class="h-24 w-24 bg-white rounded-[2.5rem] shadow-xl border border-indigo-100 flex items-center justify-center text-indigo-600"> <svg class="h-10 w-10" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20 13V6a2 2 0 00-2-2H6a2 2 0 00-2 2v7m16 0v5a2 2 0 01-2 2H6a2 2 0 01-2-2v-5m16 0h-2.586a1 1 0 00-.707.293l-2.414 2.414a1 1 0 01-.707.293h-3.172a1 1 0 01-.707-.293l-2.414-2.414A1 1 0 006.586 13H4" /></svg> </div> </div> </div> <div class="space-y-4"> <h2 class="text-3xl font-black text-slate-900 tracking-tight">Void Detected</h2> <p class="text-slate-500 text-lg leading-relaxed">No protocols have been initialized in this sector. The manifest link is currently dormant.</p> </div> <div class="pt-6"> <button class="px-8 py-4 bg-slate-900 text-white rounded-2xl text-xs font-black uppercase tracking-[0.2em] shadow-2xl shadow-slate-900/30 hover:bg-indigo-600 hover:-translate-y-1 transition-all cursor-pointer">Initialise Hub</button> </div> <p class="text-[10px] font-black text-slate-300 uppercase tracking-widest pt-8">Status: 0 Verified Nodes</p> </div> </body> </html>