--- import Icon from './Icon.astro'; interface Props { title: string; description: string; icon?: 'robot' | 'document' | 'lightning' | 'hook' | 'workflow' | 'plug' | 'wrench' | 'book'; } const { title, description, icon } = Astro.props; const contributingUrl = 'https://github.com/github/awesome-copilot/blob/main/CONTRIBUTING.md'; ---