minor UI improvements to Verification screen

This commit is contained in:
Alejandro Gomez
2023-01-13 08:55:28 +01:00
parent 038f484623
commit 5e9cf92922
3 changed files with 9 additions and 4 deletions

View File

@ -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 (
<>
<div className="verification">
<h2>Get Verified</h2>
<p>
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() {
</ul>
{services.map(a => <Nip5Service key={a.name} {...a} />)}
</>
</div>
)
}