Open services/Router.js and add the following method to the object:

setMetadata(section, color) {
    document.title = `${section} - Coffee Masters`;
    document.querySelector("meta[name=theme-color]").content = color;
}

Now, on each case in the switch, add a call with some metadata, such as:

Router.setMetadata("Menu", "#43281C");