diff --git a/src/content/menus/header.yaml b/src/content/menus/header.yaml index 2a88869668..c16fcb7bd4 100644 --- a/src/content/menus/header.yaml +++ b/src/content/menus/header.yaml @@ -9,6 +9,8 @@ items: link: /values - name: Community link: /community + - name: Teams + link: /teams - name: Blog link: /blog - name: Donate diff --git a/src/pages/community.astro b/src/pages/community.astro index df61bddeef..e22c809320 100644 --- a/src/pages/community.astro +++ b/src/pages/community.astro @@ -411,111 +411,88 @@ import nixosFoundationLogo from "../assets/image/nixos-foundation-logo.svg";
- -

- Teams -

-
    - { - teams.map((team) => ( -
  • - {`${team.data.name} -

    {team.data.name}

    -

    - {team.data.description} -

    - -
  • - )) - } -
-
-
- - -
-
- NixOS Foundation Logo + +
+
+ NixOS Foundation Logo +
+
+

+ Board members: +

+
    + { + teams + .filter( + (team) => team.slug.split("_")[1] === "foundation-board", + )[0] + .data.members.map((member) => ( +
  • + {member.name} + {member.title && ( + <> + — + {member.title} + + )} +
  • + )) + } +
+
-
-

- Board members: -

-
    - { - teams - .filter( - (team) => team.slug.split("_")[1] === "foundation-board", - )[0] - .data.members.map((member) => ( -
  • - {member.name} - {member.title && ( - <> - — - {member.title} - - )} -
  • - )) - } +
    +

    The mission!

    +

    + The mission of the foundation is to support the Nix ecosystem's + infrastructure, and projects implementing the purely functional + deployment model. +

    +

    + In particular, the foundation supports Nix, Nixpkgs, NixOS, and + operates: +

    +
      +
    • + + cache.nixos.org + - the NixOS binary cache, containing over 120TB of prebuilt Nix packages. +
    • +
    • + + hydra.nixos.org + - a Nix build farm, consisting of hundreds of macOS, x86-64 (Linux) and + aarch64 (Linux) build cores. Hydra executes over 350,000 builds each + week. +
    • +
    • + + Event Funding +
    +

    + The NixOS Foundation is a registered non-profit organisation at the + Chamber of commerce (Kamer van Koophandel) in Utrecht, The + Netherlands. The KvK number is 63520583. +

    +

    + You can contact the foundation by writing an email to foundation@nixos.org. +

    -
-
-

- The mission! -

-

- The mission of the foundation is to support the Nix ecosystem's - infrastructure, and projects implementing the purely functional - deployment model. -

-

- In particular, the foundation supports Nix, Nixpkgs, NixOS, and - operates: -

-
    -
  • - cache.nixos.org - - the NixOS binary cache, containing over 120TB of prebuilt Nix packages. -
  • -
  • - hydra.nixos.org - - a Nix build farm, consisting of hundreds of macOS, x86-64 (Linux) and - aarch64 (Linux) build cores. Hydra executes over 350,000 builds each week. -
  • -
  • - Event Funding -
  • -
-

- The NixOS Foundation is a registered non-profit organisation at the - Chamber of commerce (Kamer van Koophandel) in Utrecht, The Netherlands. - The KvK number is 63520583. -

-

- You can contact the foundation by writing an email to foundation@nixos.org. -

-
-
+ +