For the sidebar, I can do:
items: [
'pageid-1',
'pageid-2',
...
],
But for the footer (afaik) I have to do:
items: [
{
label: 'Page Title 1',
to: '/pageid-1',
},
{
label: 'Page Title 2',
to: '/pageid-2',
},
...
],
This is harder to maintain (and just annoying!). Maybe I'm missing something... would love that to be true