--- export type Props = { name: string href: string count?: number } const { name, href, count } = Astro.props --- {name} {count && {count}}