chore: merge main

This commit is contained in:
SwiftHawk 2024-05-16 11:23:26 +05:00 committed by Yury
parent be5661942b
commit cbe4a683c7
5 changed files with 15 additions and 13 deletions

View File

@ -1 +1 @@
VITE_MOST_POPULAR_RELAYS=wss://relay.damus.io wss://eden.nostr.land wss://nos.lol wss://relay.snort.social wss://relay.current.fyi wss://brb.io wss://nostr.orangepill.dev wss://nostr-pub.wellorder.net wss://nostr.bitcoiner.social wss://nostr.wine wss://nostr.oxtr.dev wss://relay.nostr.bg wss://nostr.mom wss://nostr.fmt.wiz.biz wss://relay.nostr.band wss://nostr-pub.semisol.dev wss://nostr.milou.lol wss://puravida.nostr.land wss://nostr.onsats.org wss://relay.nostr.info wss://offchain.pub wss://relay.orangepill.dev wss://no.str.cr wss://atlas.nostr.land wss://nostr.zebedee.cloud wss://nostr-relay.wlvs.space wss://relay.nostrati.com wss://relay.nostr.com.au wss://nostr.inosta.cc wss://nostr.rocks VITE_MOST_POPULAR_RELAYS=wss://relay.damus.io wss://eden.nostr.land wss://nos.lol wss://relay.snort.social wss://relay.current.fyi wss://brb.io wss://nostr.orangepill.dev wss://nostr-pub.wellorder.net wss://nostr.wine wss://nostr.oxtr.dev wss://relay.nostr.bg wss://nostr.mom wss://nostr.fmt.wiz.biz wss://relay.nostr.band wss://nostr-pub.semisol.dev wss://nostr.milou.lol wss://puravida.nostr.land wss://nostr.onsats.org wss://relay.nostr.info wss://offchain.pub wss://relay.orangepill.dev wss://no.str.cr wss://atlas.nostr.land wss://nostr.zebedee.cloud wss://nostr-relay.wlvs.space wss://relay.nostrati.com wss://relay.nostr.com.au wss://nostr.inosta.cc wss://nostr.rocks

View File

@ -22,7 +22,7 @@ export const HomePage = () => {
</Button> </Button>
<Button <Button
onClick={() => navigate(appPrivateRoutes.verify)} onClick={() => navigate(appPrivateRoutes.verify)}
variant='contained' variant="contained"
> >
Verify Verify
</Button> </Button>

View File

@ -59,7 +59,7 @@ export const LandingPage = () => {
}} }}
variant="h4" variant="h4"
> >
What is Nostr? What is SIGit?
</Typography> </Typography>
<Typography <Typography
sx={{ sx={{
@ -69,24 +69,26 @@ export const LandingPage = () => {
}} }}
variant="body1" variant="body1"
> >
Nostr is a decentralised messaging protocol where YOU own your SIGit is an open-source and self-hostable solution for secure
identity. To get started, you must have an existing{' '} document signing and verification. Code is MIT licenced and
available at{' '}
<a <a
className="bold-link" className="bold-link"
target="_blank" target="_blank"
href="https://nostr.com/" href="https://git.sigit.io/sig/it"
> >
Nostr account https://git.sigit.io/sig/it
</a> </a>
. .
<br /> <br />
<br /> <br />
No email required - all notifications are made using the nQuiz SIGit lets you Create, Sign and Verify signature packs from any
relay. device with a browser.
<br /> <br />
<br /> <br />
If you no longer wish to hear from us, simply remove Unlike other solutions, SIGit is totally private - files are
relay.nquiz.io from your list of relays. encrypted locally, and valid packs can only be exported by named
recipients.
</Typography> </Typography>
</Box> </Box>
</Box> </Box>

View File

@ -303,7 +303,7 @@ export const Login = () => {
<div className={styles.loginPage}> <div className={styles.loginPage}>
<Typography variant="h4">Welcome to Sigit</Typography> <Typography variant="h4">Welcome to Sigit</Typography>
<TextField <TextField
label="nip05 / npub / nsec / bunker connx string" label="nip05 login / nip46 bunker string / nsec"
value={inputValue} value={inputValue}
onChange={(e) => setInputValue(e.target.value)} onChange={(e) => setInputValue(e.target.value)}
sx={{ width: '100%', mt: 2 }} sx={{ width: '100%', mt: 2 }}

View File

@ -288,7 +288,7 @@ export const ProfilePage = () => {
setAvatarLoading(false) setAvatarLoading(false)
}} }}
className={styles.img} className={styles.img}
src={profileMetadata.picture || npub ? getRoboHashPicture(npub!) : ''} src={profileMetadata.picture || placeholderAvatar}
alt="Profile Image" alt="Profile Image"
/> />