diff --git a/src/components/widgets/Header.astro b/src/components/widgets/Header.astro index ff4a3aa..da225cc 100644 --- a/src/components/widgets/Header.astro +++ b/src/components/widgets/Header.astro @@ -14,6 +14,7 @@ interface Link { href?: string; ariaLabel?: string; icon?: string; + target?: string; } interface MenuLink extends Link { @@ -86,7 +87,7 @@ const currentPath = `/${trimSlash(new URL(Astro.url).pathname)}`; class="flex flex-col md:flex-row md:self-center w-full md:w-auto text-xl md:text-[0.9375rem] tracking-[0.01rem] font-medium md:justify-center" > { - links.map(({ text, href, links }) => ( + links.map(({ text, href, links, target }) => (
  • {links?.length ? ( <> @@ -98,7 +99,7 @@ const currentPath = `/${trimSlash(new URL(Astro.url).pathname)}`;