--- import ToolSection from './ToolSection.astro' interface Props { title: string categories: { title: string sections: { [key: string]: { title: string tools: { name: string description: string href?: string iconPath?: string }[] } } }[] } const { title, categories } = Astro.props ---

{title}

{ categories.map((category) => (

{category.title}

{Object.values(category.sections).map((section) => (
))}
)) }