diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 054e31c..36b746d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -16,7 +16,7 @@ The [issues page](https://github.com/astro-reactive/astro-reactive/issues?q=is%3 If you don't find anything there, we are happy to help you get your contribution in. -You can always [create a new issue](https://github.com/astro-reactive/astro-reactive/issues/new/choose) for your own idea, [post on our discussions](https://github.com/astro-reactive/astro-reactive/discussions) or join our [Discord](https://discord.gg/fkpkKdPJ). +You can always [create a new issue](https://github.com/astro-reactive/astro-reactive/issues/new/choose) for your own idea, [post on our discussions](https://github.com/astro-reactive/astro-reactive/discussions) or join our [Discord](https://discord.gg/kkvW7GYNAp). # The Astro Reactive Library @@ -124,7 +124,7 @@ Thank you again for your interest in contributing! 📝 Check the [discussion board](https://github.com/astro-reactive/astro-reactive/discussions) for announcements or post your messages and questions -💬 Hang-out with the team on our [Discord](https://discord.gg/fkpkKdPJ) to share feedback, get support, or just have some laughs over memes 😅 +💬 Hang-out with the team on our [Discord](https://discord.gg/kkvW7GYNAp) to share feedback, get support, or just have some laughs over memes 😅 🛠️ Create a [new issue](https://github.com/astro-reactive/astro-reactive/issues/new/choose) for bugs found or improvement ideas diff --git a/apps/docs/src/config.ts b/apps/docs/src/config.ts index d5c5d8c..8d53348 100644 --- a/apps/docs/src/config.ts +++ b/apps/docs/src/config.ts @@ -30,7 +30,7 @@ export const KNOWN_LANGUAGE_CODES = Object.values(KNOWN_LANGUAGES); export const GITHUB_EDIT_URL = `https://github.com/astro-reactive/astro-reactive/tree/main/apps/docs`; -export const COMMUNITY_INVITE_URL = `https://discord.gg/fkpkKdPJ`; +export const COMMUNITY_INVITE_URL = `https://discord.gg/kkvW7GYNAp`; // See "Algolia" section of the README for more information. export const ALGOLIA = { diff --git a/apps/landing-page/src/components/header.astro b/apps/landing-page/src/components/header.astro index 6cdb64b..4d89279 100644 --- a/apps/landing-page/src/components/header.astro +++ b/apps/landing-page/src/components/header.astro @@ -1,45 +1,45 @@ --- -import { Icon } from "astro-icon"; +import { Icon } from 'astro-icon'; // import ThemeSwitcher from "~/components/theme-switcher.astro"; const socials = [ - { - name: "GitHub", - url: "https://github.com/astro-reactive/astro-reactive", - icon: "fa-brands:github-alt", - }, - { - name: "Discord", - url: "https://discord.gg/fkpkKdPJ", - icon: "fa-brands:discord", - }, + { + name: 'GitHub', + url: 'https://github.com/astro-reactive/astro-reactive', + icon: 'fa-brands:github-alt', + }, + { + name: 'Discord', + url: 'https://discord.gg/kkvW7GYNAp', + icon: 'fa-brands:discord', + }, ]; --- -