Spaces:
Running
Running
Crie um sistema visual e funcional chamado “DeepSite v2” voltado para desenvolvimento pessoal, rotina e metas. A interface deve seguir um design minimalista moderno, funcional, emocionalmente envolvente e inspirado na estética Apple. 🧭 ESTRUTURA DE MENUS (menu lateral fixo, ícones clean): Home / Dashboard Geral Rotina Objetivos & Metas Persona ("Perfil") Contato Feedback 🏠 1. HOME | DASHBOARD GERAL Layout: 📊 Gráfico de Rotina (horizontal, canto superior direito) 📋 Grade de Metas (centralizada, maior destaque) 🎯 Gráfico de Objetivos (barras verticais no canto inferior direito) Todos esses elementos devem estar dentro de balões translúcidos com bordas arredondadas, no estilo glassmorphism + liquid glass (efeito de vidro). Cada balão deve ter profundidade sutil e sombra leve. 📆 2. ROTINA Seções: 🗓️ Rotina semanal (cards com balões translúcidos, com status por dia) 🌙 Gráfico do sono com visual fluido e intuitivo 🔒 5 dias inegociáveis (caixas editáveis com hábito e progresso, estilo tracker com cores suaves) 🎯 3. OBJETIVOS & METAS Objetivos: ✅ Gerenciador de hábitos com progresso visual (barras suaves em verde) 🔔 Lembretes com datas, horários e botões sutis Metas: Cada meta deve estar dentro de um balão translúcido com: 📷 Imagem destacada 🏷️ Título 📄 Descrição curta 💰 Valor total da meta 🗓️ Prazo (visual clean) 📈 Valor acumulado + barra de progresso verde com detalhes em degradê translúcido 👤 4. PERSONA ("PERFIL") Seções: 🖼️ Foto do usuário (dentro de balão redondo com efeito vidro) 🧑 Nome de usuário 🧠 Bio curta 🎭 Emojis/sentimento atual (ex: “focado”, “cansado”, “vitorioso”) — opcional 🏅 Níveis e conquistas com balões de status (gamificação sutil) 🌱 5. FEEDBACK / DESENVOLVIMENTO 📝 Campo de feedback com botão enviar ⭐ Sistema de pontuação (0 a 5) 🎉 Sensação de vitória: Após progresso ou meta atingida, exibir pop-up com balão translúcido animado, mensagem motivacional e destaque em verde vivo com gradiente suave 🎨 IDENTIDADE VISUAL — ESTILO APPLE (VERSÃO REFORÇADA) Estética: Minimalista, soft e tecnológica Componentes: Glassmorphism + liquid glass Balões translúcidos com bordas arredondadas Sombra leve para profundidade Cores principais: Branco gelo (#f9f9f9) Cinza claro (#e0e0e0) Verde destaque (#32d27f ou similar em degradê) Textos em cinza escuro (#333, sem preto puro) Fonte sugerida: SF Pro Display (ou similar) Layout fluido, responsivo, com animações suaves (ex: hover, entrada de dados, transições) ✅ INSTRUÇÕES PARA EXECUÇÃO Mobile-first design Código modular Use Tailwind CSS + Framer Motion (ou outras libs modernas) Crie experiência visual com profundidade e leveza — não encha com cor ou elementos pesados Elementos sempre organizados por hierarquia e clareza de navegação - Initial Deployment
15e6a51 verified | <html lang="pt-BR"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>DeepSite v2 | Desenvolvimento Pessoal</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet"> | |
| <script src="https://cdn.jsdelivr.net/npm/chart.js"></script> | |
| <style> | |
| body { | |
| font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; | |
| background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%); | |
| } | |
| .glass-card { | |
| background: rgba(255, 255, 255, 0.25); | |
| backdrop-filter: blur(10px); | |
| -webkit-backdrop-filter: blur(10px); | |
| border: 1px solid rgba(255, 255, 255, 0.18); | |
| box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1); | |
| } | |
| .glass-card:hover { | |
| transform: translateY(-2px); | |
| box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.15); | |
| } | |
| .progress-gradient { | |
| background: linear-gradient(90deg, #32d27f 0%, #2bc58d 100%); | |
| } | |
| .success-popup { | |
| animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; | |
| } | |
| @keyframes popIn { | |
| 0% { transform: scale(0.8); opacity: 0; } | |
| 100% { transform: scale(1); opacity: 1; } | |
| } | |
| .sidebar-link.active { | |
| background: rgba(255, 255, 255, 0.35); | |
| border-left: 3px solid #32d27f; | |
| } | |
| .sidebar-link:hover:not(.active) { | |
| background: rgba(255, 255, 255, 0.2); | |
| } | |
| .habit-tracker { | |
| transition: all 0.3s ease; | |
| } | |
| .habit-tracker:hover { | |
| transform: translateY(-3px); | |
| } | |
| </style> | |
| </head> | |
| <body class="min-h-screen flex text-gray-800"> | |
| <!-- Sidebar Navigation --> | |
| <div class="hidden md:flex md:w-64 lg:w-72 flex-col fixed h-full bg-white/10 glass-card z-10"> | |
| <div class="p-6 flex items-center space-x-3"> | |
| <div class="w-10 h-10 rounded-full glass-card flex items-center justify-center"> | |
| <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-gray-600" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z" /> | |
| </svg> | |
| </div> | |
| <h1 class="text-xl font-semibold text-gray-700">DeepSite v2</h1> | |
| </div> | |
| <nav class="mt-8 flex-1 px-4 space-y-1"> | |
| <a href="#" class="sidebar-link active flex items-center px-4 py-3 rounded-lg text-gray-700"> | |
| <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 mr-3" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6" /> | |
| </svg> | |
| Dashboard Geral | |
| </a> | |
| <a href="#" class="sidebar-link flex items-center px-4 py-3 rounded-lg text-gray-700"> | |
| <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 mr-3" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2a2 2 0 002-2zm0 0V9a2 2 0 012-2h2a2 2 0 012 2v10m-6 0a2 2 0 002 2h2a2 2 0 002-2m0 0V5a2 2 0 012-2h2a2 2 0 012 2v14a2 2 0 01-2 2h-2a2 2 0 01-2-2z" /> | |
| </svg> | |
| Rotina | |
| </a> | |
| <a href="#" class="sidebar-link flex items-center px-4 py-3 rounded-lg text-gray-700"> | |
| <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 mr-3" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2" /> | |
| </svg> | |
| Objetivos & Metas | |
| </a> | |
| <a href="#" class="sidebar-link flex items-center px-4 py-3 rounded-lg text-gray-700"> | |
| <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 mr-3" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z" /> | |
| </svg> | |
| Persona | |
| </a> | |
| <a href="#" class="sidebar-link flex items-center px-4 py-3 rounded-lg text-gray-700"> | |
| <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 mr-3" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z" /> | |
| </svg> | |
| Contato | |
| </a> | |
| <a href="#" class="sidebar-link flex items-center px-4 py-3 rounded-lg text-gray-700"> | |
| <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 mr-3" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z" /> | |
| </svg> | |
| Feedback | |
| </a> | |
| </nav> | |
| <div class="p-6"> | |
| <div class="glass-card rounded-lg p-4"> | |
| <div class="flex items-center"> | |
| <div class="w-10 h-10 rounded-full bg-gray-200 flex items-center justify-center"> | |
| <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-gray-600" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z" /> | |
| </svg> | |
| </div> | |
| <div class="ml-3"> | |
| <p class="text-sm font-medium text-gray-700">Usuário</p> | |
| <p class="text-xs text-gray-500">Premium</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Mobile Header --> | |
| <div class="md:hidden fixed top-0 left-0 right-0 bg-white/30 backdrop-blur-md z-20 p-4 flex justify-between items-center"> | |
| <div class="flex items-center space-x-2"> | |
| <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-gray-700" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z" /> | |
| </svg> | |
| <h1 class="text-lg font-semibold text-gray-700">DeepSite v2</h1> | |
| </div> | |
| <button id="mobile-menu-button" class="text-gray-700"> | |
| <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" /> | |
| </svg> | |
| </button> | |
| </div> | |
| <!-- Mobile Menu --> | |
| <div id="mobile-menu" class="hidden fixed inset-0 bg-white/90 backdrop-blur-lg z-30 pt-20 px-6"> | |
| <nav class="space-y-4"> | |
| <a href="#" class="block px-4 py-3 rounded-lg text-gray-700 bg-white/50">Dashboard Geral</a> | |
| <a href="#" class="block px-4 py-3 rounded-lg text-gray-700">Rotina</a> | |
| <a href="#" class="block px-4 py-3 rounded-lg text-gray-700">Objetivos & Metas</a> | |
| <a href="#" class="block px-4 py-3 rounded-lg text-gray-700">Persona</a> | |
| <a href="#" class="block px-4 py-3 rounded-lg text-gray-700">Contato</a> | |
| <a href="#" class="block px-4 py-3 rounded-lg text-gray-700">Feedback</a> | |
| </nav> | |
| <div class="mt-8 glass-card rounded-lg p-4"> | |
| <div class="flex items-center"> | |
| <div class="w-10 h-10 rounded-full bg-gray-200 flex items-center justify-center"> | |
| <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-gray-600" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z" /> | |
| </svg> | |
| </div> | |
| <div class="ml-3"> | |
| <p class="text-sm font-medium text-gray-700">Usuário</p> | |
| <p class="text-xs text-gray-500">Premium</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Main Content --> | |
| <main class="flex-1 md:ml-64 lg:ml-72 p-6 pt-20 md:pt-6"> | |
| <h2 class="text-2xl font-semibold text-gray-700 mb-6">Dashboard Geral</h2> | |
| <!-- Dashboard Grid --> | |
| <div class="grid grid-cols-1 lg:grid-cols-3 gap-6"> | |
| <!-- Routine Chart --> | |
| <div class="glass-card rounded-2xl p-6 col-span-1 lg:col-span-2"> | |
| <div class="flex justify-between items-center mb-4"> | |
| <h3 class="text-lg font-medium text-gray-700">Rotina Semanal</h3> | |
| <select class="bg-transparent border border-gray-200 rounded-lg px-3 py-1 text-sm"> | |
| <option>Esta semana</option> | |
| <option>Semana passada</option> | |
| <option>Últimos 30 dias</option> | |
| </select> | |
| </div> | |
| <canvas id="routineChart" height="200"></canvas> | |
| </div> | |
| <!-- Goals Grid --> | |
| <div class="glass-card rounded-2xl p-6"> | |
| <h3 class="text-lg font-medium text-gray-700 mb-4">Metas em Destaque</h3> | |
| <div class="space-y-4"> | |
| <div class="glass-card rounded-xl p-4"> | |
| <div class="flex justify-between items-start"> | |
| <div> | |
| <h4 class="font-medium text-gray-700">Economizar para viagem</h4> | |
| <p class="text-sm text-gray-500 mt-1">R$5,000 / R$10,000</p> | |
| </div> | |
| <span class="text-xs px-2 py-1 bg-green-100 text-green-800 rounded-full">50%</span> | |
| </div> | |
| <div class="w-full bg-gray-200 rounded-full h-2 mt-3"> | |
| <div class="progress-gradient h-2 rounded-full" style="width: 50%"></div> | |
| </div> | |
| </div> | |
| <div class="glass-card rounded-xl p-4"> | |
| <div class="flex justify-between items-start"> | |
| <div> | |
| <h4 class="font-medium text-gray-700">Ler 12 livros</h4> | |
| <p class="text-sm text-gray-500 mt-1">4 / 12</p> | |
| </div> | |
| <span class="text-xs px-2 py-1 bg-green-100 text-green-800 rounded-full">33%</span> | |
| </div> | |
| <div class="w-full bg-gray-200 rounded-full h-2 mt-3"> | |
| <div class="progress-gradient h-2 rounded-full" style="width: 33%"></div> | |
| </div> | |
| </div> | |
| <div class="glass-card rounded-xl p-4"> | |
| <div class="flex justify-between items-start"> | |
| <div> | |
| <h4 class="font-medium text-gray-700">Aprender francês</h4> | |
| <p class="text-sm text-gray-500 mt-1">Nível A1</p> | |
| </div> | |
| <span class="text-xs px-2 py-1 bg-blue-100 text-blue-800 rounded-full">Em progresso</span> | |
| </div> | |
| <div class="w-full bg-gray-200 rounded-full h-2 mt-3"> | |
| <div class="progress-gradient h-2 rounded-full" style="width: 20%"></div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Habit Tracker --> | |
| <div class="glass-card rounded-2xl p-6 col-span-1 lg:col-span-2"> | |
| <h3 class="text-lg font-medium text-gray-700 mb-4">5 Dias Inegociáveis</h3> | |
| <div class="grid grid-cols-2 md:grid-cols-5 gap-4"> | |
| <div class="habit-tracker glass-card rounded-xl p-4 text-center"> | |
| <div class="w-12 h-12 bg-green-100 rounded-full flex items-center justify-center mx-auto mb-2"> | |
| <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-green-600" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" /> | |
| </svg> | |
| </div> | |
| <h4 class="font-medium text-gray-700">Exercícios</h4> | |
| <p class="text-sm text-gray-500">5/7 dias</p> | |
| </div> | |
| <div class="habit-tracker glass-card rounded-xl p-4 text-center"> | |
| <div class="w-12 h-12 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-2"> | |
| <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-blue-600" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20.354 15.354A9 9 0 018.646 3.646 9.003 9.003 0 0012 21a9.003 9.003 0 008.354-5.646z" /> | |
| </svg> | |
| </div> | |
| <h4 class="font-medium text-gray-700">Sono</h4> | |
| <p class="text-sm text-gray-500">7h média</p> | |
| </div> | |
| <div class="habit-tracker glass-card rounded-xl p-4 text-center"> | |
| <div class="w-12 h-12 bg-purple-100 rounded-full flex items-center justify-center mx-auto mb-2"> | |
| <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-purple-600" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6.253v13m0-13C10.832 5.477 9.246 5 7.5 5S4.168 5.477 3 6.253v13C4.168 18.477 5.754 18 7.5 18s3.332.477 4.5 1.253m0-13C13.168 5.477 14.754 5 16.5 5c1.747 0 3.332.477 4.5 1.253v13C19.832 18.477 18.247 18 16.5 18c-1.746 0-3.332.477-4.5 1.253" /> | |
| </svg> | |
| </div> | |
| <h4 class="font-medium text-gray-700">Leitura</h4> | |
| <p class="text-sm text-gray-500">30min/dia</p> | |
| </div> | |
| <div class="habit-tracker glass-card rounded-xl p-4 text-center"> | |
| <div class="w-12 h-12 bg-yellow-100 rounded-full flex items-center justify-center mx-auto mb-2"> | |
| <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-yellow-600" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z" /> | |
| </svg> | |
| </div> | |
| <h4 class="font-medium text-gray-700">Meditação</h4> | |
| <p class="text-sm text-gray-500">10min/dia</p> | |
| </div> | |
| <div class="habit-tracker glass-card rounded-xl p-4 text-center"> | |
| <div class="w-12 h-12 bg-red-100 rounded-full flex items-center justify-center mx-auto mb-2"> | |
| <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-red-600" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11.049 2.927c.3-.921 1.603-.921 1.902 0l1.519 4.674a1 1 0 00.95.69h4.915c.969 0 1.371 1.24.588 1.81l-3.976 2.888a1 1 0 00-.363 1.118l1.518 4.674c.3.922-.755 1.688-1.538 1.118l-3.976-2.888a1 1 0 00-1.176 0l-3.976 2.888c-.783.57-1.838-.197-1.538-1.118l1.518-4.674a1 1 0 00-.363-1.118l-3.976-2.888c-.784-.57-.38-1.81.588-1.81h4.914a1 1 0 00.951-.69l1.519-4.674z" /> | |
| </svg> | |
| </div> | |
| <h4 class="font-medium text-gray-700">Produtividade</h4> | |
| <p class="text-sm text-gray-500">85%</p> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Objectives Chart --> | |
| <div class="glass-card rounded-2xl p-6"> | |
| <h3 class="text-lg font-medium text-gray-700 mb-4">Progresso de Objetivos</h3> | |
| <canvas id="objectivesChart" height="250"></canvas> | |
| </div> | |
| </div> | |
| <!-- Success Popup (hidden by default) --> | |
| <div id="success-popup" class="hidden fixed inset-0 flex items-center justify-center z-50"> | |
| <div class="glass-card rounded-2xl p-8 max-w-md mx-4 success-popup text-center"> | |
| <div class="w-20 h-20 bg-green-100 rounded-full flex items-center justify-center mx-auto mb-6"> | |
| <svg xmlns="http://www.w3.org/2000/svg" class="h-10 w-10 text-green-600" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" /> | |
| </svg> | |
| </div> | |
| <h3 class="text-2xl font-semibold text-gray-700 mb-2">Meta Atingida!</h3> | |
| <p class="text-gray-600 mb-6">Você completou sua rotina diária com sucesso. Continue assim!</p> | |
| <button onclick="hideSuccessPopup()" class="bg-green-500 hover:bg-green-600 text-white px-6 py-2 rounded-lg transition">Ótimo!</button> | |
| </div> | |
| </div> | |
| </main> | |
| <script> | |
| // Mobile menu toggle | |
| document.getElementById('mobile-menu-button').addEventListener('click', function() { | |
| document.getElementById('mobile-menu').classList.toggle('hidden'); | |
| }); | |
| // Show success popup (for demo purposes) | |
| function showSuccessPopup() { | |
| document.getElementById('success-popup').classList.remove('hidden'); | |
| } | |
| // Hide success popup | |
| function hideSuccessPopup() { | |
| document.getElementById('success-popup').classList.add('hidden'); | |
| } | |
| // Demo: Show popup after 3 seconds | |
| setTimeout(showSuccessPopup, 3000); | |
| // Initialize charts | |
| document.addEventListener('DOMContentLoaded', function() { | |
| // Routine Chart | |
| const routineCtx = document.getElementById('routineChart').getContext('2d'); | |
| const routineChart = new Chart(routineCtx, { | |
| type: 'line', | |
| data: { | |
| labels: ['Seg', 'Ter', 'Qua', 'Qui', 'Sex', 'Sáb', 'Dom'], | |
| datasets: [{ | |
| label: 'Produtividade', | |
| data: [65, 59, 80, 81, 56, 55, 40], | |
| borderColor: '#32d27f', | |
| backgroundColor: 'rgba(50, 210, 127, 0.1)', | |
| tension: 0.3, | |
| fill: true | |
| }] | |
| }, | |
| options: { | |
| responsive: true, | |
| plugins: { | |
| legend: { | |
| display: false | |
| } | |
| }, | |
| scales: { | |
| y: { | |
| beginAtZero: true, | |
| max: 100, | |
| grid: { | |
| color: 'rgba(0, 0, 0, 0.05)' | |
| } | |
| }, | |
| x: { | |
| grid: { | |
| display: false | |
| } | |
| } | |
| } | |
| } | |
| }); | |
| // Objectives Chart | |
| const objectivesCtx = document.getElementById('objectivesChart').getContext('2d'); | |
| const objectivesChart = new Chart(objectivesCtx, { | |
| type: 'bar', | |
| data: { | |
| labels: ['Viagem', 'Leitura', 'Francês', 'Poupança', 'Exercícios'], | |
| datasets: [{ | |
| label: 'Progresso', | |
| data: [50, 33, 20, 75, 90], | |
| backgroundColor: [ | |
| 'rgba(50, 210, 127, 0.7)', | |
| 'rgba(50, 210, 127, 0.7)', | |
| 'rgba(50, 210, 127, 0.7)', | |
| 'rgba(50, 210, 127, 0.7)', | |
| 'rgba(50, 210, 127, 0.7)' | |
| ], | |
| borderColor: [ | |
| 'rgba(50, 210, 127, 1)', | |
| 'rgba(50, 210, 127, 1)', | |
| 'rgba(50, 210, 127, 1)', | |
| 'rgba(50, 210, 127, 1)', | |
| 'rgba(50, 210, 127, 1)' | |
| ], | |
| borderWidth: 1, | |
| borderRadius: 6 | |
| }] | |
| }, | |
| options: { | |
| responsive: true, | |
| plugins: { | |
| legend: { | |
| display: false | |
| } | |
| }, | |
| scales: { | |
| y: { | |
| beginAtZero: true, | |
| max: 100, | |
| grid: { | |
| color: 'rgba(0, 0, 0, 0.05)' | |
| } | |
| }, | |
| x: { | |
| grid: { | |
| display: false | |
| } | |
| } | |
| } | |
| } | |
| }); | |
| }); | |
| </script> | |
| <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=dom1nemais/progress" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |