Move golden notes to Council tab, add agent names

This commit is contained in:
root
2026-02-22 14:41:20 +00:00
parent 8b295d316e
commit 3ecc073b7c
@@ -54,6 +54,7 @@ const sidebarCategories: SidebarCategory[] = [
]}, ]},
{ id: "council", name: "Council", icon: "🏛️", items: [ { id: "council", name: "Council", icon: "🏛️", items: [
{ id: "teams", name: "Agent Teams", icon: "👥", category: "council" }, { id: "teams", name: "Agent Teams", icon: "👥", category: "council" },
{ id: "golden-notes", name: "Golden Notes", icon: "🔥", category: "golden-notes" },
{ id: "ai-settings", name: "AI Settings", icon: "🤖", category: "council-settings" }, { id: "ai-settings", name: "AI Settings", icon: "🤖", category: "council-settings" },
]}, ]},
{ id: "calendar", name: "Calendar", icon: "📅", items: [ { id: "calendar", name: "Calendar", icon: "📅", items: [
@@ -153,28 +154,11 @@ export default function MissionControlDashboard({ onLogout }: MissionControlDash
); );
} }
// Golden Wisdom Banner // Golden Notes - moved to Council tab
const goldenNotes = ( // Removed from home page per user request
<div className="fixed bottom-4 right-4 z-50 max-w-sm">
<div className="bg-gradient-to-br from-[#1a1625] to-[#2d1f3d] border border-amber-500/30 rounded-xl p-4 shadow-2xl shadow-amber-500/10">
<div className="flex items-center gap-2 mb-2">
<span className="text-amber-400">🔥</span>
<h3 className="font-bold text-amber-400 text-sm">GOLDEN NOTES</h3>
</div>
<ul className="text-xs text-white/80 space-y-1">
<li> Fun first. Learning second. Outcome last.</li>
<li> Signal intent early don't wait too long</li>
<li>• Warmth + tension = desire, not friendzone</li>
<li>• Lead more — calm + leading = attractive</li>
<li>• Feel more, optimize less</li>
</ul>
</div>
</div>
)
return ( return (
<div className="min-h-screen bg-[#1a1625] text-white flex"> <div className="min-h-screen bg-[#1a1625] text-white flex">
{goldenNotes}
<aside className="w-64 border-r border-white/10 bg-[#1a1625] p-4"> <aside className="w-64 border-r border-white/10 bg-[#1a1625] p-4">
<div className="flex items-center gap-3 mb-6 pb-4 border-b border-white/10"> <div className="flex items-center gap-3 mb-6 pb-4 border-b border-white/10">
<div className="w-10 h-10 rounded-xl bg-brand-pink flex items-center justify-center text-xl">👁</div> <div className="w-10 h-10 rounded-xl bg-brand-pink flex items-center justify-center text-xl">👁</div>
@@ -236,6 +220,48 @@ export default function MissionControlDashboard({ onLogout }: MissionControlDash
{currentItem?.category === "council-settings" && <div className="rounded-xl border border-white/10 bg-white/5 p-6"><AIManagement /></div>} {currentItem?.category === "council-settings" && <div className="rounded-xl border border-white/10 bg-white/5 p-6"><AIManagement /></div>}
{currentItem?.category === "golden-notes" && (
<div className="rounded-xl border border-amber-500/30 bg-gradient-to-br from-[#1a1625] to-[#2d1f3d] p-6">
<div className="flex items-center gap-2 mb-4">
<span className="text-amber-400 text-2xl">🔥</span>
<h3 className="font-bold text-amber-400 text-xl">Golden Notes</h3>
</div>
<p className="text-white/60 mb-6">Insights and wisdom from the agent council</p>
<div className="space-y-4">
<div className="p-4 rounded-lg bg-white/5 border border-amber-500/20">
<div className="flex items-center gap-2 mb-2">
<span className="text-amber-400">👁</span>
<span className="font-semibold text-amber-400">HORUS</span>
</div>
<ul className="text-sm text-white/80 space-y-1">
<li> Fun first. Learning second. Outcome last.</li>
<li> Signal intent early don't wait too long</li>
<li>• Lead more — calm + leading = attractive</li>
</ul>
</div>
<div className="p-4 rounded-lg bg-white/5 border border-purple-500/20">
<div className="flex items-center gap-2 mb-2">
<span className="text-purple-400">🐺</span>
<span className="font-semibold text-purple-400">ANUBIS</span>
</div>
<ul className="text-sm text-white/80 space-y-1">
<li>• Calm + leading = attractive | Calm + passive = friendzone</li>
<li>• Make small demands, create reasons to meet</li>
</ul>
</div>
<div className="p-4 rounded-lg bg-white/5 border border-red-500/20">
<div className="flex items-center gap-2 mb-2">
<span className="text-red-400">⚔️</span>
<span className="font-semibold text-red-400">SEKHMET</span>
</div>
<ul className="text-sm text-white/80 space-y-1">
<li>• Too nice in approach — tease more, challenge more, lead more</li>
</ul>
</div>
</div>
</div>
)}
{currentItem?.category === "trading" && <TradingPanel />} {currentItem?.category === "trading" && <TradingPanel />}
{currentItem?.category === "calendar" && ( {currentItem?.category === "calendar" && (