diff --git a/src/components/Nav.astro b/src/components/Nav.astro index b58ada2..11637a1 100644 --- a/src/components/Nav.astro +++ b/src/components/Nav.astro @@ -3,7 +3,6 @@ import Icon from "astro-icon"; export type Link = { url: string; icon: string; - newTab?: boolean; }; export interface Props { @@ -19,7 +18,7 @@ const { links } = Astro.props; links .filter((link) => link.url !== "") .map((link) => ( - + {link.icon} )) diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 9ad346a..3bdbab9 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -17,17 +17,14 @@ const links: Link[] = [ { url: "https://ayos.blog", icon: "blog", - newTab: true, }, { url: "https://ayco.io/@ayo", icon: "mastodon", - newTab: true, }, { url: "https://ayco.io/github", icon: "github", - newTab: true, }, ]; ---