diff --git a/src/components/LinkButton.astro b/src/components/LinkButton.astro index c37608a..0e62467 100644 --- a/src/components/LinkButton.astro +++ b/src/components/LinkButton.astro @@ -4,10 +4,11 @@ export interface Props { className?: string; ariaLabel?: string; title?: string; + rel?: string; disabled?: boolean; } -const { href, className, ariaLabel, title, disabled = false } = Astro.props; +const { href, className, ariaLabel, title, rel, disabled = false } = Astro.props; --- diff --git a/src/components/Socials.astro b/src/components/Socials.astro index e6c8a90..4a35cb0 100755 --- a/src/components/Socials.astro +++ b/src/components/Socials.astro @@ -16,6 +16,7 @@ const { centered = false, withText = false } = Astro.props; SOCIALS.filter(social => social.active).map(social => (