--- 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 ---