VibeCoderzVibeCoderz
Telegram
All Prompts
Live Automation Dashboard Stats Card preview
dashboardstatscardtailwindresponsiveinteractivehoveranalyticsprogresspulse

Live Automation Dashboard Stats Card

Интерактивная карточка дашборда для отображения метрик автоматизации в реальном времени. Подходит для аналитики и админ-панелей.

Prompt

<div class="scroll-reveal-blur revealed mb-20">
  <div
    class="group sm:p-6 cursor-pointer transition-all duration-500 hover:scale-105 hover:bg-zinc-800/80 hover:shadow-xl bg-zinc-900 border-zinc-800 border rounded-3xl mt-6 pt-6 pr-6 pb-6 pl-6">
    <div class="pt-0 pr-0 pb-0 pl-0">
      <div class="flex mb-6 items-center justify-between">
        <h3 class="text-xl font-medium text-white">Live Automation Dashboard</h3>
        <div class="flex items-center space-x-2">
          <div class="w-3 h-3 bg-emerald-500 rounded-full animate-pulse"></div>
          <span class="text-sm text-gray-400">Real-time Processing</span>
        </div>
      </div>

      <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
        <div class="bg-black/40 rounded-2xl p-6 border border-white/10">
          <div class="flex items-center justify-between mb-4">
            <h4 class="text-white font-medium">Task Processing</h4>
            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
              stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"
              class="w-[20px] h-[20px]" data-icon-replaced="true"
              style="width: 20px; height: 20px; color: rgb(255, 255, 255);">
              <path d="M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" class=""></path>
              <circle cx="9" cy="7" r="4" class=""></circle>
              <path d="M22 21v-2a4 4 0 0 0-3-3.87" class=""></path>
              <path d="M16 3.13a4 4 0 0 1 0 7.75" class=""></path>
            </svg>
          </div>
          <div class="text-3xl font-light text-white mb-2" id="tasks-processed">15,847</div>
          <p class="text-sm text-gray-400">Tasks completed today</p>
          <div class="mt-4 h-2 bg-white/10 rounded-full">
            <div class="h-2 bg-gradient-to-r from-emerald-500 to-teal-500 rounded-full" style="width: 78%"></div>
          </div>
        </div>

        <div class="bg-black/40 rounded-2xl p-6 border border-white/10">
          <div class="flex items-center justify-between mb-4">
            <h4 class="text-white font-medium">Efficiency Gain</h4>
            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
              stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"
              class="w-[20px] h-[20px]" data-icon-replaced="true"
              style="width: 20px; height: 20px; color: rgb(255, 255, 255);">
              <path d="M16 7h6v6" class=""></path>
              <path d="m22 7-8.5 8.5-5-5L2 17" class=""></path>
            </svg>
          </div>
          <div class="text-3xl font-light text-white mb-2">247%</div>
          <p class="text-sm text-gray-400">Productivity increase</p>
          <div class="mt-4 h-2 bg-white/10 rounded-full">
            <div class="h-2 bg-gradient-to-r from-emerald-500 to-teal-500 rounded-full" style="width: 95%"></div>
          </div>
        </div>

        <div class="bg-black/40 rounded-2xl p-6 border border-white/10">
          <div class="flex items-center justify-between mb-4">
            <h4 class="text-white font-medium">Cost Savings</h4>
            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
              stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"
              class="w-[20px] h-[20px]" data-icon-replaced="true"
              style="width: 20px; height: 20px; color: rgb(255, 255, 255);">
              <circle cx="12" cy="12" r="10" class=""></circle>
              <path d="M12 6v6l4 2" class=""></path>
            </svg>
          </div>
          <div class="text-3xl font-light text-white mb-2">$2.4M</div>
          <p class="text-sm text-gray-400">Saved this quarter</p>
          <div class="mt-4 h-2 bg-white/10 rounded-full">
            <div class="h-2 bg-gradient-to-r from-emerald-500 to-teal-500 rounded-full" style="width: 68%"></div>
          </div>
        </div>
      </div>
    </div>
  </div>
</div>
All Prompts