fediversity/website/content/navigation.nix
Valentin Gagarin be057fb93b
All checks were successful
/ check-pre-commit (pull_request) Successful in 29s
/ check-pre-commit (push) Successful in 21s
use email address that's being monitored
2024-11-18 09:40:41 +01:00

32 lines
752 B
Nix

{ config, lib, ... }:
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";
};
}
];
};
}