Skip to content

Commit d5ba4e7

Browse files
author
Alexia Michelle
committed
updated discord invite link
1 parent 97652fd commit d5ba4e7

3 files changed

Lines changed: 24 additions & 2 deletions

File tree

i18n/es/docusaurus-plugin-content-pages/community.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import NewsletterForm from '@site/src/components/NewsletterForm';
33
# Comunidad
44
## Canales
55
* **IRC**: irc.libera.chat #goldendog (puenteado con Discord)
6-
* **Discord**: [Únete](https://goldendoglinux.org/discord)
6+
* **Discord**: [Únete](/discord)
77
* **Bluesky**: [Síguenos](https://bsky.app/profile/goldendoglinux.org)
88
* **GitHub**: [Contribuye](https://github.com/goldendoglinux)
99
* **Soporte y Problemas**: [Reportar Error / Solicitar Función](https://github.com/goldendoglinux/support/issues)

src/pages/community.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import NewsletterForm from '@site/src/components/NewsletterForm';
33
# Community
44
## Channels
55
* **IRC**: irc.libera.chat #goldendoglinux (bridged to Discord)
6-
* **Discord**: [Join us](https://goldendoglinux.org/discord)
6+
* **Discord**: [Join us](/discord)
77
* **Bluesky**: [Follow us](https://bsky.app/profile/goldendoglinux.org)
88
* **GitHub**: [Contribute](https://github.com/goldendoglinux)
99

src/pages/discord.js

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import React, { useEffect } from 'react';
2+
import Layout from '@theme/Layout';
3+
4+
const DISCORD_INVITE_URL = 'https://discord.gg/y9Fmy5HZMr';
5+
6+
export default function DiscordRedirectPage() {
7+
useEffect(() => {
8+
window.location.replace(DISCORD_INVITE_URL);
9+
}, []);
10+
11+
return (
12+
<Layout title="Redirecting to Discord">
13+
<main className="container margin-vert--xl">
14+
<h1>Redirecting to Discord...</h1>
15+
<p>
16+
If you are not redirected automatically, use this link:{' '}
17+
<a href={DISCORD_INVITE_URL}>Join our Discord server</a>.
18+
</p>
19+
</main>
20+
</Layout>
21+
);
22+
}

0 commit comments

Comments
 (0)