diff --git a/web/i18n/en/about.json b/web/i18n/en/about.json index 35e93f03..e566faaa 100644 --- a/web/i18n/en/about.json +++ b/web/i18n/en/about.json @@ -6,5 +6,11 @@ "page.privacy": "privacy policy", "page.terms": "terms and ethics", - "page.credits": "thanks & licenses" + "page.credits": "thanks & licenses", + + "community.discord": "community discord server", + "community.twitter": "news account on twitter", + "community.github": "github repo", + "community.email": "support email", + "community.telegram": "news channel on telegram" } diff --git a/web/i18n/en/donate.json b/web/i18n/en/donate.json index 33d47384..bf99eb80 100644 --- a/web/i18n/en/donate.json +++ b/web/i18n/en/donate.json @@ -32,5 +32,5 @@ "alternative.title": "alternative ways to donate", "alt.copy": "{{ value }}. crypto wallet address. press to copy.", - "alt.open": "{{ value }}. donation link, press to open." + "alt.open": "{{ value }}. press to open." } diff --git a/web/src/components/donate/DonateAltItem.svelte b/web/src/components/donate/DonateAltItem.svelte index c82f987e..0bc45789 100644 --- a/web/src/components/donate/DonateAltItem.svelte +++ b/web/src/components/donate/DonateAltItem.svelte @@ -8,6 +8,7 @@ export let type: "copy" | "open"; export let name: string; export let address: string; + export let title = ""; let copied = false; @@ -44,7 +45,9 @@
{name}
- {#if type === "copy"} + {#if title} + {title} + {:else if type === "copy"} {address} {:else} {address.split("//", 2)[1]} diff --git a/web/src/lib/env.ts b/web/src/lib/env.ts index 43dc98df..c921c7ca 100644 --- a/web/src/lib/env.ts +++ b/web/src/lib/env.ts @@ -18,9 +18,11 @@ const variables = { } const contacts = { - github: "https://github.com/imputnet/cobalt", + discord: "https://discord.gg/pQPt8HBUPu", twitter: "https://x.com/justusecobalt", - bluesky: "https://bsky.app/profile/cobalt.tools", + github: "https://github.com/imputnet/cobalt", + email: "support@cobalt.tools", + telegram_ru: "https://t.me/justusecobalt_ru", } const partners = { diff --git a/web/src/routes/about/community/+page.svelte b/web/src/routes/about/community/+page.svelte index 07d06ff0..e0638015 100644 --- a/web/src/routes/about/community/+page.svelte +++ b/web/src/routes/about/community/+page.svelte @@ -1 +1,64 @@ -
community links
+ + + +
+ {#if $locale !== "ru"} + + + + {/if} + + + + + + {#if $locale === "ru"} + + {/if} +
+ +