almost done

This commit is contained in:
2024-11-29 17:58:26 +01:00
parent 44efa2047a
commit ccec3806f2
24 changed files with 479 additions and 106 deletions

View File

@@ -2,7 +2,7 @@
export type Props = {
name: string
href: string
count: number
count?: number
}
const { name, href, count } = Astro.props
@@ -11,7 +11,7 @@ const { name, href, count } = Astro.props
<a {href}>
<div>
{name}
<i>{count}</i>
{count && <i>{count}</i>}
</div>
</a>