Fediversity/website/content/navigation.nix

50 lines
923 B
Nix
Raw Normal View History

2025-02-19 18:38:05 +01:00
{ config, ... }:
2024-11-13 15:24:41 +01:00
let
inherit (config) pages;
in
{
menus.main = {
label = "Main";
items = [
2025-02-19 18:34:19 +01:00
{
page = pages.index // {
title = "Start";
};
}
2024-11-13 15:24:41 +01:00
{
menu.label = "For you";
2025-02-19 18:34:19 +01:00
menu.items = map (page: { inherit page; }) (
with pages;
[
individuals
developers
european-commission
]
);
2024-11-13 15:24:41 +01:00
}
2024-11-13 15:24:41 +01:00
{
menu.label = "Consortium";
2025-02-19 18:34:19 +01:00
menu.items = map (page: { inherit page; }) (
with pages;
[
nlnet
oid
tweag
nordunet
]
);
2024-11-13 15:24:41 +01:00
}
2024-11-13 15:24:41 +01:00
{ page = pages.fediversity; }
{ page = pages.grants; }
{ page = pages.news; }
{ page = pages.events; }
{
link = {
label = "Contact";
url = "mailto:contact@fediversity.eu";
};
}
2024-11-13 15:24:41 +01:00
];
};
}