"use client"; import type { FC } from "react"; import Image from "next/image"; import Link from "next/link"; import { useTheme } from "next-themes"; import { GOD_MODE_URL } from "@plane/constants"; import { Button } from "@plane/propel/button"; import { PlaneLockup } from "@plane/propel/icons"; // helpers // images // assets import PlaneBackgroundPatternDark from "@/public/auth/background-pattern-dark.svg"; import PlaneBackgroundPattern from "@/public/auth/background-pattern.svg"; import PlaneTakeOffImage from "@/public/plane-takeoff.png"; export const InstanceNotReady: FC = () => { const { resolvedTheme } = useTheme(); const patternBackground = resolvedTheme === "dark" ? PlaneBackgroundPatternDark : PlaneBackgroundPattern; return (
Plane background pattern

Welcome aboard Plane!

Plane Logo

Get started by setting up your instance and workspace

); };