first blog more written

This commit is contained in:
2026-04-07 21:24:58 -05:00
parent fdbc4b1ed8
commit c2ae195cb8
15 changed files with 180 additions and 107 deletions

View File

@@ -26,4 +26,10 @@ export function Link(props: {href: Path, children : ReactNode, target?: '_blank'
return <a {...props} onClick={onClick} className={className}>
{children}
</a>
}
}
export function ExternalLink(props: HTMLProps<HTMLAnchorElement>) {
return (
<Link {...props} href={props.href as Path} className="external-link" target="_blank">{props.children}</Link>
)
}