snort/src/Pages/Verification.tsx

42 lines
1.5 KiB
TypeScript
Raw Normal View History

2023-01-25 11:49:56 +00:00
import { ApiHost } from "Const";
2023-01-20 11:11:50 +00:00
import Nip5Service from "Element/Nip5Service";
2023-01-12 15:35:42 +00:00
import './Verification.css'
2023-01-12 15:35:42 +00:00
export default function VerificationPage() {
const services = [
2023-01-13 13:37:07 +00:00
{
2023-01-12 15:35:42 +00:00
name: "Snort",
2023-01-25 11:49:56 +00:00
service: `${ApiHost}/api/v1/n5sp`,
2023-01-12 15:35:42 +00:00
link: "https://snort.social/",
2023-01-13 13:37:07 +00:00
supportLink: "https://snort.social/help",
2023-01-12 15:35:42 +00:00
about: <>Our very own NIP-05 verification service, help support the development of this site and get a shiny special badge on our site!</>
2023-01-13 13:37:07 +00:00
},
2023-01-12 15:35:42 +00:00
{
name: "Nostr Plebs",
service: "https://nostrplebs.com/api/v1",
link: "https://nostrplebs.com/",
2023-01-12 21:36:31 +00:00
supportLink: "https://nostrplebs.com/manage",
2023-01-12 15:35:42 +00:00
about: <>
<p>Nostr Plebs is one of the first NIP-05 providers in the space and offers a good collection of domains at reasonable prices</p>
</>
}
];
return (
2023-01-25 18:08:53 +00:00
<div className="main-content verification">
2023-01-12 15:35:42 +00:00
<h2>Get Verified</h2>
<p>
NIP-05 is a DNS based verification spec which helps to validate you as a real user.
</p>
<p>Getting NIP-05 verified can help:</p>
<ul>
2023-01-13 18:45:36 +00:00
<li>Prevent fake accounts from imitating you</li>
2023-01-12 15:35:42 +00:00
<li>Make your profile easier to find and share</li>
<li>Fund developers and platforms providing NIP-05 verification services</li>
</ul>
{services.map(a => <Nip5Service key={a.name} {...a} />)}
</div>
2023-01-12 15:35:42 +00:00
)
}