diff --git a/src/client/components/Nav.tsx b/src/client/components/Nav.tsx index 0a2813d..4f222cb 100644 --- a/src/client/components/Nav.tsx +++ b/src/client/components/Nav.tsx @@ -23,7 +23,7 @@ export function Nav({ app, render }: { app: App; render: () => void }) { return ( handleTabClick('overview')}> - Overview + 📋 Overview {tools.map(tool => { const toolName = typeof tool.tool === 'string' ? tool.tool : tool.name @@ -33,7 +33,7 @@ export function Nav({ app, render }: { app: App; render: () => void }) { active={selectedTab === tool.name ? true : undefined} onClick={() => handleTabClick(tool.name)} > - {titlecase(toolName)} + {tool.icon} {titlecase(toolName)} ) })}