mirror of
https://github.com/ditatompel/xmr-remote-nodes.git
synced 2025-01-08 05:52:10 +07:00
Compare commits
3 commits
283503f5d9
...
114cc9e4e1
Author | SHA1 | Date | |
---|---|---|---|
114cc9e4e1 | |||
4d3a022e68 | |||
d0affd12f5 |
4 changed files with 22 additions and 4 deletions
11
frontend/src/lib/components/News.svelte
Normal file
11
frontend/src/lib/components/News.svelte
Normal file
|
@ -0,0 +1,11 @@
|
|||
<!-- prettier-ignore -->
|
||||
<section id="site-news" class="mx-auto w-full max-w-4xl px-4 pb-7">
|
||||
<div class="alert variant-ghost-secondary shadow-xl">
|
||||
<div class="alert-message">
|
||||
<h2 class="h3 text-center">Quick Info</h2>
|
||||
<p>
|
||||
On November 7th, 2024, localmonero.co website will be taken down. If you have an account and a balance, withdraw your funds prior to this date. For more information, visit <a href="https://localmonero.co/blog/announcements/winding-down" class="external" target="_blank" rel="noopener">localmonero.co announcement page</a>.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
|
@ -12,9 +12,10 @@ export async function load() {
|
|||
{ text: 'moneroworld.com', uri: 'https://moneroworld.com' },
|
||||
{ text: 'monero.how', uri: 'https://www.monero.how' },
|
||||
{ text: 'monero.observer', uri: 'https://www.monero.observer' },
|
||||
{ text: 'sethforprivacy.com', uri: 'https://sethforprivacy.com' },
|
||||
{ text: 'localmonero.co', uri: 'https://localmonero.co/knowledge' },
|
||||
{ text: 'revuo-xmr.com', uri: 'https://revuo-xmr.com/' }
|
||||
{ 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' }
|
||||
],
|
||||
stagenet: [
|
||||
{ label: 'P2P', value: 'stagenet.xmr.ditatompel.com:38080', key: 'snetP2P' },
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
IcnFacebook,
|
||||
IcnTelegram
|
||||
} from '$lib/components/svg';
|
||||
import News from '$lib/components/News.svelte';
|
||||
|
||||
/** @type {import('./$types').PageData} */
|
||||
export let data;
|
||||
|
@ -105,6 +106,8 @@
|
|||
</div>
|
||||
</section>
|
||||
|
||||
<News />
|
||||
|
||||
<section id="my-monero-public-nodes" class="bg-surface-100-800-token">
|
||||
<div class="section-container text-token grid grid-cols-1 gap-10 md:grid-cols-2">
|
||||
<div class="text-center">
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
UptimeCell,
|
||||
EstimateFeeCell
|
||||
} from '$lib/components/datatables/xmr';
|
||||
import News from '$lib/components/News.svelte';
|
||||
|
||||
export let data;
|
||||
let filterNettype = 'any';
|
||||
|
@ -76,13 +77,15 @@
|
|||
</header>
|
||||
|
||||
<!-- prettier-ignore -->
|
||||
<section id="introduction ">
|
||||
<section id="introduction">
|
||||
<div class="section-container text-center !max-w-4xl">
|
||||
<p>Remote node can be used by people who, for their own reasons (usually because of hardware requirements, disk space, or technical abilities), cannot/don't want to run their own node and prefer to relay on one publicly available on the Monero network.</p>
|
||||
<p>Using an open node will allow to make a transaction instantaneously, without the need to download the blockchain and sync to the Monero network first, but at the cost of the control over your privacy. the <strong>Monero community suggests to <span class="font-extrabold text-2xl underline decoration-double decoration-2 decoration-pink-500">always run and use your own node</span></strong> to obtain the maximum possible privacy and to help decentralize the network.</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<News />
|
||||
|
||||
<section id="monero-remote-node">
|
||||
<div class="section-container">
|
||||
<div class="space-y-2 overflow-x-auto">
|
||||
|
|
Loading…
Reference in a new issue