Skip to content

Commit

Permalink
community: do not promote unmoderated spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
nyabinary committed May 23, 2024
1 parent 8f3d14c commit adf1a0f
Showing 1 changed file with 2 additions and 30 deletions.
32 changes: 2 additions & 30 deletions src/pages/community.astro
Original file line number Diff line number Diff line change
Expand Up @@ -98,19 +98,6 @@ const platformsOther = [
},
];
const platformsOutside = [
{
href: "https://discord.gg/RbvHtGa",
name: "Discord",
iconName: "simple-icons:discord",
},
{
href: "https://www.reddit.com/r/NixOS/",
name: "Reddit",
iconName: "simple-icons:reddit",
},
];
import nixosFoundationLogo from "../assets/image/nixos-foundation-logo.svg";
---

Expand Down Expand Up @@ -145,7 +132,7 @@ import nixosFoundationLogo from "../assets/image/nixos-foundation-logo.svg";
<h2 class="text-4xl font-bold font-heading leading-none text-nix-blue mt-8">Where to talk?</h2>
<p class="font-extralight leading-relaxed mt-2">
The Nix community is spread across various platforms. Here are the
official and unofficial spaces where you can find help, discuss
official spaces where you can find help, discuss
development, and chat with other users.
<h3 class="text-3xl font-bold font-heading text-nix-blue mt-4">Official spaces</h3>
<p class="text-gray-700">
Expand Down Expand Up @@ -173,23 +160,8 @@ import nixosFoundationLogo from "../assets/image/nixos-foundation-logo.svg";
type="mobile_icon_desktop_name" />
))
}
</ul>
</ul>
</div>
<h3 class="text-3xl font-bold font-heading text-nix-blue mt-6">Unofficial spaces</h3>
<p class="text-gray-700">
These spaces are not monitored and not moderated by the NixOS Moderation Team.
<ul class="grid grid-cols-2 md:grid-cols-3 gap-4 mt-4 flex-wrap">
{platformsOutside.map((platform) => (
<CommunityLink
href={platform.href}
name={platform.name}
iconName={platform.iconName}
description={platform.description}
type="mobile_icon_desktop_name" />
))
}
</ul>
</p>
</Container>
<Banner wrapperClasses="my-8">
If you are looking for professional help, <a
Expand Down

0 comments on commit adf1a0f

Please sign in to comment.