feat(web): collator sort helpers + ExternalUriLink + filter/uri i18n (#50)

This commit is contained in:
2026-06-08 08:54:04 +02:00
parent a4fb05a175
commit 6c2fa63cac
5 changed files with 68 additions and 4 deletions
+12
View File
@@ -0,0 +1,12 @@
export function ExternalUriLink({ uri }: { uri: string }) {
return (
<a
href={uri}
target="_blank"
rel="noopener noreferrer"
className="block truncate text-xs text-muted-foreground hover:text-foreground"
>
{uri}
</a>
);
}