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

Calendar: init - add links to the common calendars #1488

Merged
merged 1 commit into from
Jun 28, 2024
Merged
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
41 changes: 37 additions & 4 deletions src/pages/community.astro
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,20 @@ const socialMediaMain = [
}
]

const calendarsMain = [
{
href: "https://calendar.google.com/calendar/u/0/embed?src=b9o52fobqjak8oq8lfkhg3t0qg@group.calendar.google.com",
name: "Official NixOS Calendar",
iconName: "mdi:calendar",
},
{
href: "https://discourse.nixos.org/t/community-calendar/18589",
name: "Community Calendar",
iconName: "mdi:calendar",
},
] as const;


const platformsOutside = [
{
href: "https://stackoverflow.com/questions/tagged/nix+or+nixpkgs+or+nixos+or+nixops",
Expand Down Expand Up @@ -164,7 +178,7 @@ import nixosFoundationLogo from "../assets/image/nixos-foundation-logo.svg";
<h3 class="text-3xl font-bold font-heading text-nix-blue mt-4">Official spaces</h3>
<p class="text-gray-700">
These spaces are monitored and moderated by the NixOS Moderation Team. This means they are moderated in such a way that they follow the standards and moral values of our community. You can find out more about our moderation team <a href="/community/teams/moderation">here</a>.

<ul class="grid grid-cols-1 md:grid-cols-2 gap-4 mt-4 flex-wrap">
{
platformsMain.map((platform, i) => (
Expand All @@ -177,14 +191,14 @@ import nixosFoundationLogo from "../assets/image/nixos-foundation-logo.svg";
/>
))
}
</ul>
</ul>
</p>
</div>
<div class="col-span-1">
<h3 class="text-3xl font-bold font-heading text-nix-blue mt-4">Official social-media</h3>
<p class="text-gray-700">
These spaces are maintained by our NixOS Marketing Team though not monitored and not moderated by the NixOS Moderation Team.

<ul class="grid grid-cols-1 gap-4 mt-4 flex-wrap">
{
socialMediaMain.map((platform) => (
Expand All @@ -194,7 +208,26 @@ import nixosFoundationLogo from "../assets/image/nixos-foundation-logo.svg";
iconName={platform.iconName} />
))
}
</ul>
</ul>
</p>
</div>
<div class="col-span-3">
<h3 class="text-3xl font-bold font-heading text-nix-blue mt-4">
Our calendars
</h3>
<p class="text-gray-700">
We use these calendars to schedule events, meetings, and other.
<ul class="grid grid-cols-1 gap-4 mt-4 flex-wrap">
{
calendarsMain.map((platform) => (
<OfficialCommunityLink
href={platform.href}
name={platform.name}
iconName={platform.iconName}
/>
))
}
</ul>
</p>
</div>
</div>
Expand Down