diff --git a/src/components/ButtonLink.astro b/src/components/ButtonLink.astro index dbd40f3..2eba118 100644 --- a/src/components/ButtonLink.astro +++ b/src/components/ButtonLink.astro @@ -3,12 +3,18 @@ import styles from "../styles/Button.module.css" export interface Props { href: string + title?: string newTab?: boolean } -const { href, newTab } = Astro.props +const { href, newTab, title } = Astro.props --- - + diff --git a/src/components/Top.astro b/src/components/Top.astro index 415a924..9dc25d4 100644 --- a/src/components/Top.astro +++ b/src/components/Top.astro @@ -5,12 +5,14 @@ import styles from "../styles/Top.module.css" ---