import { FC } from "react"; import Image from "next/image"; import Link from "next/link"; // ui import { Button } from "@plane/ui"; // helpers import { ADMIN_BASE_URL, ADMIN_BASE_PATH } from "@/helpers/common.helper"; // images import PlaneTakeOffImage from "@/public/instance/plane-takeoff.png"; export const InstanceNotReady: FC = () => { const GOD_MODE_URL = encodeURI(ADMIN_BASE_URL + ADMIN_BASE_PATH + "/setup/?auth_enabled=0"); return (

Welcome aboard Plane!

Plane Logo

Get started by setting up your instance and workspace

); };