From 17b57dc94e458a2ea98d1c07e1128f66c9f287b6 Mon Sep 17 00:00:00 2001
From: Johannes Kirschbauer
Date: Fri, 28 Jun 2024 13:49:02 +0200
Subject: [PATCH] Calendar: init - add links to the common calendars
---
src/pages/community.astro | 41 +++++++++++++++++++++++++++++++++++----
1 file changed, 37 insertions(+), 4 deletions(-)
diff --git a/src/pages/community.astro b/src/pages/community.astro
index 5fbf63f40f..e75fe3e7be 100644
--- a/src/pages/community.astro
+++ b/src/pages/community.astro
@@ -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",
@@ -164,7 +178,7 @@ import nixosFoundationLogo from "../assets/image/nixos-foundation-logo.svg";
Official spaces
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 here.
-
+
{
platformsMain.map((platform, i) => (
@@ -177,14 +191,14 @@ import nixosFoundationLogo from "../assets/image/nixos-foundation-logo.svg";
/>
))
}
-
+
Official social-media
These spaces are maintained by our NixOS Marketing Team though not monitored and not moderated by the NixOS Moderation Team.
-
+
{
socialMediaMain.map((platform) => (
@@ -194,7 +208,26 @@ import nixosFoundationLogo from "../assets/image/nixos-foundation-logo.svg";
iconName={platform.iconName} />
))
}
-
+
+
+
+
+
+ Our calendars
+
+
+ We use these calendars to schedule events, meetings, and other.
+
+ {
+ calendarsMain.map((platform) => (
+
+ ))
+ }
+