fixed _blank

This commit is contained in:
Noah Swerhun 2024-04-14 23:26:51 -05:00
parent ef7433cd96
commit 93fbb87dee
2 changed files with 2 additions and 2 deletions

View file

@ -9,6 +9,6 @@ import Link from "@/components/Link.astro";
<Link
class="text-xs"
href="https://git.noahsw.xyz/noah/noahsw.xyz"
target="about:blank">VIEW THE SOURCE</Link
target="_blank">VIEW THE SOURCE</Link
>
</footer>

View file

@ -36,7 +36,7 @@ const props: Props = Astro.props;
</Paragraph>
{
props.links.map(({ text, url }) => (
<Link href={url} target="about:blank">
<Link href={url} target="_blank">
{text}
</Link>
))