---
/**
* ServiceCard component displays a service with an icon and name
* @component
* @example
* ```astro
*
* ```
*/
interface Props {
/**
* The name of the service to display
*/
name: string;
/**
* The URL to link to when the service card is clicked
*/
href: string;
/**
* The URL of the service icon
*/
img: string;
/**
* Alternative text for the service icon
*/
alt: string;
}
const { name, href, img, alt } = Astro.props;
---
{name}