Allow creation of the menu items, currently only in NavBar and Footer, to be created with an array of CustomLink types.
export type CustomLink = {
name: string;
href: string;
}
e.g. Something like:
const myLinks: CustomLink[] = [{
"name":"menu one",
"href":"/menu/one/"
}]
<NavBar menu={my-links} />