From 7c6a822445b8b8662555a51e87c65ce3f4e02bf0 Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Thu, 30 Dec 2021 21:40:26 -0300 Subject: [PATCH] improve "add your relay" line. --- index.html | 7 ------- main.js | 15 ++++++++++++++- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/index.html b/index.html index e3764ce..c637851 100644 --- a/index.html +++ b/index.html @@ -5,11 +5,4 @@
-
- Add your relay: - https://github.com/fiatjaf/nostr-relay-registry -
- diff --git a/main.js b/main.js index 530ebcd..b4364ae 100644 --- a/main.js +++ b/main.js @@ -98,7 +98,20 @@ const App = { ) ) ]) - ) + ), + h('tr', [ + h('th', {style: {textAlign: 'right'}}, 'Your relay here:'), + h('th', {colSpan: 3}, [ + h( + 'a', + { + href: 'https://github.com/fiatjaf/nostr-relay-registry', + style: {color: 'black'} + }, + '________________' + ) + ]) + ]) ]) } }