habithive-buzz / index.html
Zakay's picture
clone exatamente esse site
9e22d73 verified
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HabitHive Buzz</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
</head>
<body class="bg-gray-100 min-h-screen">
<div class="container mx-auto px-4 py-8">
<header class="mb-8">
<div class="flex justify-between items-center">
<h1 class="text-2xl font-bold text-gray-800">Dashboard Diário</h1>
<div class="text-gray-600">sexta-feira, 2 de janeiro de 2026</div>
</div>
</header>
<main>
<section class="mb-8">
<div class="bg-white rounded-lg shadow-md p-6 text-center">
<h2 class="text-xl font-semibold mb-4 text-gray-700">Hoje é um novo dia para evoluir! 💪</h2>
</div>
</section>
<section class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 mb-8">
<div class="bg-white rounded-lg shadow-md p-6 text-center">
<h3 class="text-lg font-medium text-gray-600 mb-2">Hábitos Hoje</h3>
<p class="text-3xl font-bold text-gray-800">0/0</p>
<p class="text-gray-500">0% concluído</p>
</div>
<div class="bg-white rounded-lg shadow-md p-6 text-center">
<h3 class="text-lg font-medium text-gray-600 mb-2">Pontos</h3>
<p class="text-3xl font-bold text-gray-800">0/0</p>
<p class="text-gray-500">Pontuação do dia</p>
</div>
<div class="bg-white rounded-lg shadow-md p-6 text-center">
<h3 class="text-lg font-medium text-gray-600 mb-2">Sequência</h3>
<p class="text-3xl font-bold text-gray-800">0</p>
<p class="text-gray-500">Maior streak</p>
</div>
<div class="bg-white rounded-lg shadow-md p-6 text-center">
<h3 class="text-lg font-medium text-gray-600 mb-2">Desempenho</h3>
<p class="text-3xl font-bold text-gray-800">0%</p>
<p class="text-gray-500">Performance geral</p>
</div>
</section>
<section class="mb-8">
<div class="bg-white rounded-lg shadow-md p-6">
<h3 class="text-lg font-medium text-gray-600 mb-4">Progresso do Dia</h3>
<div class="w-full bg-gray-200 rounded-full h-4">
<div class="bg-blue-500 h-4 rounded-full" style="width: 0%"></div>
</div>
<p class="text-right text-gray-500 mt-2">Hábitos concluídos 0%</p>
</div>
</section>
<section>
<div class="bg-white rounded-lg shadow-md p-6">
<h3 class="text-lg font-medium text-gray-600 mb-4">Hábitos de Hoje</h3>
<div class="text-center py-8">
<p class="text-gray-500">Nenhum hábito configurado para hoje.</p>
<p class="text-gray-500 mt-2">Vá para a aba Hábitos para adicionar novos hábitos.</p>
</div>
</div>
</section>
</main>
</div>
<script>
feather.replace();
</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>