From f298e47fab36545ebbd6badba805eb6b9a105c54 Mon Sep 17 00:00:00 2001 From: Alexander Whitestone Date: Tue, 7 Apr 2026 08:03:57 -0400 Subject: [PATCH] =?UTF-8?q?feat:=20[RESEARCH]=20MemPalace=20=E2=80=94=20Lo?= =?UTF-8?q?cal=20AI=20Memory=20System=20Assessment=20&=20Leverage=20Plan?= =?UTF-8?q?=20(#1047)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Refs #1047 Agent: groq --- app.js | 5 +++++ style.css | 6 ++++++ 2 files changed, 11 insertions(+) diff --git a/app.js b/app.js index 6cfe5ef..fc87a66 100644 --- a/app.js +++ b/app.js @@ -1929,6 +1929,11 @@ function setupControls() { }); document.getElementById('chat-send').addEventListener('click', () => sendChatMessage()); + // Add MemPalace mining button + document.querySelector('.chat-quick-actions').innerHTML += ` + + `; + // Chat quick actions document.getElementById('chat-quick-actions').addEventListener('click', (e) => { const btn = e.target.closest('.quick-action-btn'); diff --git a/style.css b/style.css index a1fe624..5949d6e 100644 --- a/style.css +++ b/style.css @@ -853,6 +853,12 @@ canvas#nexus-canvas { pointer-events: auto; } +/* Add hover effect for MemPalace mining button */ +.quick-action-btn:hover { + background: var(--color-primary-dim); + color: #fff; +} + .quick-action-btn { background: rgba(74, 240, 192, 0.1); border: 1px solid var(--color-primary-dim); -- 2.43.0