2024-05-04 01:38:08 +07:00
|
|
|
/** @type {import('./$types').PageLoad} */
|
|
|
|
export async function load({ data }) {
|
|
|
|
/* prettier-ignore */
|
|
|
|
const metaDefaults = {
|
2024-05-04 15:32:42 +07:00
|
|
|
title: 'Add Monero Node',
|
|
|
|
description: 'You can use this page to add known remote node to the system so my bots can monitor it.',
|
|
|
|
keywords: 'monero, monero node, monero public node, monero wallet'
|
2024-05-04 01:38:08 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
return {
|
|
|
|
meta: {
|
|
|
|
title: metaDefaults.title,
|
|
|
|
description: metaDefaults.description,
|
|
|
|
keywords: metaDefaults.keywords,
|
|
|
|
image:
|
|
|
|
'https://vcl-og-img.ditatompel.com/' + encodeURIComponent(metaDefaults.title) + '.png?md=0',
|
|
|
|
// Article
|
|
|
|
article: { publishTime: '', modifiedTime: '', author: '' },
|
|
|
|
// Twitter
|
|
|
|
twitter: {
|
|
|
|
title: metaDefaults.title,
|
|
|
|
description: metaDefaults.description,
|
|
|
|
image: metaDefaults.image
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|