fix: code spliting and instance maintenance screens

This commit is contained in:
sriram veeraghanta 2024-11-12 19:48:31 +05:30
parent 106710f3d0
commit eee2145734
10 changed files with 46 additions and 10 deletions

View file

@ -0,0 +1 @@
export * from "./maintenance-message";

View file

@ -0,0 +1,6 @@
export const MaintenanceMessage = () => (
<h1 className="text-xl font-medium text-custom-text-100 text-center md:text-left">
Plane didn&apos;t start up. This could be because one or more Plane services failed to start. <br /> Choose View
Logs from setup.sh and Docker logs to be sure.
</h1>
);

View file

@ -1,5 +0,0 @@
"use client";
import { FC, Fragment } from "react";
export const MaintenanceMode: FC = () => <Fragment />;