add analytics + notice

This commit is contained in:
MapleLeaf
2022-01-12 13:15:09 -06:00
parent 50961e888e
commit 785384286b
5 changed files with 53 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
import type { ComponentPropsWithoutRef } from "react"
export function ExternalLink({
children,
...props
}: ComponentPropsWithoutRef<"a">) {
return (
<a target="_blank" rel="noopener noreferrer" {...props}>
{children}
</a>
)
}