feat: initial ChatUI modular con arbol de temas, chat n8n y KeyNotes editables
This commit is contained in:
commit
19aaeb8619
42 changed files with 6155 additions and 0 deletions
15
src/components/layout/Sidebar.tsx
Normal file
15
src/components/layout/Sidebar.tsx
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import { TreeView } from '../tree/TreeView'
|
||||
|
||||
export function Sidebar() {
|
||||
return (
|
||||
<div className="flex h-full flex-col">
|
||||
<div className="flex items-center justify-between px-3 py-3 border-b border-slate-700/60">
|
||||
<h1 className="text-sm font-semibold tracking-wide text-slate-200">WebChatV2</h1>
|
||||
<span className="text-[10px] uppercase text-slate-500">Temas</span>
|
||||
</div>
|
||||
<div className="min-h-0 flex-1 overflow-y-auto p-2">
|
||||
<TreeView />
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue