Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

community: do not promote unmoderated spaces #1439

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 1 addition & 29 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 @@ -175,21 +162,6 @@ import nixosFoundationLogo from "../assets/image/nixos-foundation-logo.svg";
}
</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
Loading