2024-10-31 16:25:16 +07:00
|
|
|
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"},
|
|
|
|
}
|
2024-11-04 17:17:23 +07:00
|
|
|
|
|
|
|
var refreshIntevals = []string{"5s", "10s", "30s", "1m"}
|