| 9 | import type { Command } from '@/lib/commands-types' |
| 10 | |
| 11 | interface HomePageClientProps { |
| 12 | allSubagents: Subagent[] |
| 13 | featuredSubagents: Subagent[] |
| 14 | categories: CategoryMetadata[] |
| 15 | allCommands: Command[] |
| 16 | featuredCommands: Command[] |
| 17 | commandCategories: CategoryMetadata[] |
| 18 | } |
| 19 | |
| 20 | export default function HomePageClient({ |
| 21 | allSubagents, |
nothing calls this directly
no outgoing calls
no test coverage detected