Add offline page
Like in the current data portal, it would be great to have a Offline
page to switch when icat is on maintenance
cf. configuration:
status: {
offline: {
enabled: false,
message: "Sorry, we're down for maintenance",
},
},
routes:
if (UI.status.offline.enabled) {
return <OfflinePage />;
}