From bf074295ebf7bebc5c97d6a7727c433efd94f4fb Mon Sep 17 00:00:00 2001 From: Storme-bit Date: Fri, 17 Apr 2026 19:56:54 -0700 Subject: [PATCH] memory view in chat client --- packages/chat-client/src/App.jsx | 2 +- .../src/components/SettingsView.jsx | 94 ++++++++++++++++--- 2 files changed, 81 insertions(+), 15 deletions(-) diff --git a/packages/chat-client/src/App.jsx b/packages/chat-client/src/App.jsx index d284a98..2b11bea 100644 --- a/packages/chat-client/src/App.jsx +++ b/packages/chat-client/src/App.jsx @@ -115,7 +115,7 @@ export default function App() { )} - {view === 'settings' && } + {view === 'settings' && } {view === 'project' && activeProject && ( +
{/* Header */}
- - Settings - + Settings
- - - + + {/* Memory */} - + onNavigate('memory')}>Open →} + /> + } + /> + } + /> + + {/* Models */} - + } + /> + } + /> + } + /> + + {/* About */} - + } + /> + v0.1.0} + /> + + {/* Appearance */} + + } + /> + +
); @@ -47,10 +96,27 @@ function SettingsSection({ title, children }) { ); } -function Placeholder() { +function SettingsRow({ label, description, action }) { return ( -
- Coming soon +
+
+ {label} + {description && {description}} +
+
+ {action} +
); +} + +function ComingSoon() { + return Coming soon; } \ No newline at end of file