This repository has been archived on 2025-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
website-old/content/navigation.nix
Kiara Grouwstra 54bf9da2a3
init
2025-04-14 11:20:58 +02:00

49 lines
923 B
Nix

{ config, ... }:
let
inherit (config) pages;
in
{
menus.main = {
label = "Main";
items = [
{
page = pages.index // {
title = "Start";
};
}
{
menu.label = "For you";
menu.items = map (page: { inherit page; }) (
with pages;
[
individuals
developers
european-commission
]
);
}
{
menu.label = "Consortium";
menu.items = map (page: { inherit page; }) (
with pages;
[
nlnet
oid
tweag
nordunet
]
);
}
{ page = pages.fediversity; }
{ page = pages.grants; }
{ page = pages.news; }
{ page = pages.events; }
{
link = {
label = "Contact";
url = "mailto:contact@fediversity.eu";
};
}
];
};
}