You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
477 B
14 lines
477 B
import { useTranslation } from 'react-i18next' |
|
import WellKnownNip05UrlLink from './WellKnownNip05UrlLink' |
|
|
|
export default function Nip05DomainEmptyState({ domain }: { domain: string }) { |
|
const { t } = useTranslation() |
|
return ( |
|
<div className="w-full px-4 py-10 text-center"> |
|
<p className="text-muted-foreground">{t('No pubkeys found on NIP-05 domain')}</p> |
|
<p className="mt-2"> |
|
<WellKnownNip05UrlLink domain={domain} /> |
|
</p> |
|
</div> |
|
) |
|
}
|
|
|