Spaces:
Running
Running
| <html lang="pt-br"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Dashboard - Oráculo da Inteligência Emocional</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;500;700&display=swap'); | |
| html, body { | |
| width: 100%; | |
| height: 100%; | |
| margin: 0; | |
| padding: 0; | |
| font-family: 'Poppins', sans-serif; | |
| } | |
| .gradient-text { | |
| background: linear-gradient(45deg, #88ced0, #5eb3b5); | |
| -webkit-background-clip: text; | |
| background-clip: text; | |
| color: transparent; | |
| } | |
| .dashboard-card { | |
| transition: all 0.3s ease; | |
| } | |
| .dashboard-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1); | |
| } | |
| </style> | |
| </head> | |
| <body class="min-h-screen bg-gradient-to-b from-cyan-50 to-teal-50"> | |
| <div class="relative z-10 w-full min-h-screen flex flex-col"> | |
| <!-- Header --> | |
| <header class="py-6 px-4 sm:px-8 flex justify-between items-center"> | |
| <h1 class="text-3xl sm:text-4xl font-bold gradient-text font-serif"> | |
| Meu Dashboard | |
| </h1> | |
| <div class="flex items-center space-x-4"> | |
| <span class="text-gray-700">Olá, Usuário</span> | |
| <button id="logout-btn" class="text-gray-500 hover:text-gray-700"> | |
| <i data-feather="log-out"></i> | |
| </button> | |
| </div> | |
| </header> | |
| <!-- Main Content --> | |
| <main class="flex-grow w-full px-6 py-6 sm:py-10"> | |
| <div class="w-full max-w-6xl mx-auto grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6"> | |
| <!-- Card 1 --> | |
| <a href="index.html" class="dashboard-card bg-white rounded-2xl shadow-lg overflow-hidden hover:shadow-xl"> | |
| <div class="p-6"> | |
| <div class="flex items-center justify-center w-16 h-16 bg-cyan-100 rounded-full mb-4 mx-auto"> | |
| <i data-feather="zap" class="w-8 h-8 text-cyan-600"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-center text-gray-800 mb-2">Oráculo Emocional</h3> | |
| <p class="text-gray-600 text-center">Puxe uma carta e receba um exercício para praticar sua inteligência emocional</p> | |
| </div> | |
| </a> | |
| <!-- Card 2 --> | |
| <a href="diario.html" class="dashboard-card bg-white rounded-2xl shadow-lg overflow-hidden hover:shadow-xl"> | |
| <div class="p-6"> | |
| <div class="flex items-center justify-center w-16 h-16 bg-cyan-100 rounded-full mb-4 mx-auto"> | |
| <i data-feather="book" class="w-8 h-8 text-cyan-600"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-center text-gray-800 mb-2">Diário Emocional</h3> | |
| <p class="text-gray-600 text-center">Registre suas emoções e acompanhe seu progresso emocional</p> | |
| </div> | |
| </a> | |
| <!-- Card 3 --> | |
| <a href="#" class="dashboard-card bg-white rounded-2xl shadow-lg overflow-hidden hover:shadow-xl"> | |
| <div class="p-6"> | |
| <div class="flex items-center justify-center w-16 h-16 bg-cyan-100 rounded-full mb-4 mx-auto"> | |
| <i data-feather="activity" class="w-8 h-8 text-cyan-600"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-center text-gray-800 mb-2">Análises</h3> | |
| <p class="text-gray-600 text-center">Visualize gráficos e insights sobre suas emoções ao longo do tempo</p> | |
| </div> | |
| </a> | |
| <!-- Card 4 --> | |
| <a href="#" class="dashboard-card bg-white rounded-2xl shadow-lg overflow-hidden hover:shadow-xl"> | |
| <div class="p-6"> | |
| <div class="flex items-center justify-center w-16 h-16 bg-cyan-100 rounded-full mb-4 mx-auto"> | |
| <i data-feather="medal" class="w-8 h-8 text-cyan-600"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-center text-gray-800 mb-2">Desafios</h3> | |
| <p class="text-gray-600 text-center">Complete desafios diários para fortalecer sua inteligência emocional</p> | |
| </div> | |
| </a> | |
| <!-- Card 5 --> | |
| <a href="#" class="dashboard-card bg-white rounded-2xl shadow-lg overflow-hidden hover:shadow-xl"> | |
| <div class="p-6"> | |
| <div class="flex items-center justify-center w-16 h-16 bg-cyan-100 rounded-full mb-4 mx-auto"> | |
| <i data-feather="compass" class="w-8 h-8 text-cyan-600"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-center text-gray-800 mb-2">Jogos</h3> | |
| <p class="text-gray-600 text-center">Jogos interativos para desenvolver habilidades emocionais</p> | |
| </div> | |
| </a> | |
| <!-- Card 6 --> | |
| <a href="#" class="dashboard-card bg-white rounded-2xl shadow-lg overflow-hidden hover:shadow-xl"> | |
| <div class="p-6"> | |
| <div class="flex items-center justify-center w-16 h-16 bg-cyan-100 rounded-full mb-4 mx-auto"> | |
| <i data-feather="settings" class="w-8 h-8 text-cyan-600"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-center text-gray-800 mb-2">Configurações</h3> | |
| <p class="text-gray-600 text-center">Personalize sua experiência e preferências</p> | |
| </div> | |
| </a> | |
| </div> | |
| </main> | |
| <!-- Footer --> | |
| <footer class="py-6 px-4 text-center text-gray-500 text-sm"> | |
| <p>© 2025 Oráculo da Inteligência Emocional. Todos os direitos reservados.</p> | |
| </footer> | |
| </div> | |
| <script> | |
| feather.replace(); | |
| document.getElementById('logout-btn').addEventListener('click', function() { | |
| // In a real app, this would call a logout API | |
| window.location.href = 'login.html'; | |
| }); | |
| </script> | |
| </body> | |
| </html> |