diff --git a/docs/src/components/ActionButtonFooter.astro b/docs/src/components/ActionButtonFooter.astro index b4dcc32..9a8b3f2 100644 --- a/docs/src/components/ActionButtonFooter.astro +++ b/docs/src/components/ActionButtonFooter.astro @@ -1,17 +1,20 @@ --- import { Icon } from '@astrojs/starlight/components'; import MyIcon from './MyIcon.astro'; +import type { Props } from '@astrojs/starlight/props'; + +const { labels } = Astro.props; ---
@@ -45,4 +48,4 @@ import MyIcon from './MyIcon.astro'; color: white; } - \ No newline at end of file + diff --git a/docs/src/components/Author.astro b/docs/src/components/Author.astro index 65bf6cb..5d77b5a 100644 --- a/docs/src/components/Author.astro +++ b/docs/src/components/Author.astro @@ -4,16 +4,17 @@ import { Icon } from '@astrojs/starlight/components'; interface Props { name: string; twitter?: string; - linkedin?: string; - github?: string; + linkedin?: string; + github?: string; + labels?: Record