File tree Expand file tree Collapse file tree
i18n/es/docusaurus-plugin-content-pages Expand file tree Collapse file tree Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments