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
---
-
+