--- import { cn } from '@/utils' import { Icon } from 'astro-icon/components' interface Props { class?: string title: string tools: { name: string description: string href?: string iconPath?: string iconBgColour?: string }[] } const { class: className, title, tools, ...props } = Astro.props ---

{title}

{ tools.map((tool) => (