export const MaintenanceMessage = () => {
const linkMap = [
{
key: "mail_to",
label: "Contact Support",
value: "mailto:support@plane.so",
},
];
return (
<>
🚧 Looks like Plane didn't start up correctly!
Some services might have failed to start. Please check your container logs to identify and resolve the issue.
If you're stuck, reach out to our support team for more help.
{linkMap.map((link) => (
))}
>
);
};