mirror of
https://github.com/ditatompel/xmr-remote-nodes.git
synced 2024-11-17 09:27:37 +00:00
4dfab11d2c
TODO: Add copy to clipboard functionality
16 lines
523 B
Go
16 lines
523 B
Go
package views
|
|
|
|
type link struct {
|
|
Text string
|
|
URI string
|
|
}
|
|
|
|
var communityLinks = []link{
|
|
{Text: "moneroworld.com", URI: "https://moneroworld.com"},
|
|
{Text: "monero.how", URI: "https://www.monero.how"},
|
|
{Text: "monero.observer", URI: "https://www.monero.observer"},
|
|
{Text: "revuo-xmr.com", URI: "https://revuo-xmr.com"},
|
|
{Text: "themonoeromoon.com", URI: "https://www.themoneromoon.com"},
|
|
{Text: "monerotopia.com", URI: "https://monerotopia.com"},
|
|
{Text: "sethforprivacy.com", URI: "https://sethforprivacy.com"},
|
|
}
|