diff --git a/src/element/Nip5Service.tsx b/src/element/Nip5Service.tsx index 16d11e3f..1c52997b 100644 --- a/src/element/Nip5Service.tsx +++ b/src/element/Nip5Service.tsx @@ -183,9 +183,9 @@ export default function Nip5Service(props: Nip05ServiceProps) { setShowInvoice(false)} title={`Buying ${handle}@${domain}`} /> {registerStatus?.paid &&

Order Paid!

- Your new NIP-05 handle is: {handle}@{domain} +

Your new NIP-05 handle is: {handle}@{domain}

Account Support

- Please make sure to save the following password in order to manage your handle in the future +

Please make sure to save the following password in order to manage your handle in the future

Go to account page

Activate Now

diff --git a/src/pages/Verification.css b/src/pages/Verification.css new file mode 100644 index 00000000..22ce987d --- /dev/null +++ b/src/pages/Verification.css @@ -0,0 +1,3 @@ +.verification a { + color: var(--highlight); +} diff --git a/src/pages/Verification.tsx b/src/pages/Verification.tsx index aa1cbf66..4d21caca 100644 --- a/src/pages/Verification.tsx +++ b/src/pages/Verification.tsx @@ -1,5 +1,7 @@ import Nip5Service from "../element/Nip5Service"; +import './Verification.css' + export default function VerificationPage() { const services = [ /*{ @@ -20,7 +22,7 @@ export default function VerificationPage() { ]; return ( - <> +

Get Verified

NIP-05 is a DNS based verification spec which helps to validate you as a real user. @@ -33,6 +35,6 @@ export default function VerificationPage() { {services.map(a => )} - +

) } \ No newline at end of file