import { FC } from "react"; import Image from "next/image"; import Link from "next/link"; import { useTheme } from "next-themes"; import { Button } from "@plane/ui"; // helpers import { GOD_MODE_URL } from "@/helpers/common.helper"; // images import PlaneTakeOffImage from "@/public/plane-takeoff.png"; // assets import PlaneBackgroundPatternDark from "public/auth/background-pattern-dark.svg"; import PlaneBackgroundPattern from "public/auth/background-pattern.svg"; import BlackHorizontalLogo from "public/plane-logos/black-horizontal-with-blue-logo.png"; import WhiteHorizontalLogo from "public/plane-logos/white-horizontal-with-blue-logo.png"; export const InstanceNotReady: FC = () => { const { resolvedTheme } = useTheme(); const patternBackground = resolvedTheme === "dark" ? PlaneBackgroundPatternDark : PlaneBackgroundPattern; const logo = resolvedTheme === "light" ? BlackHorizontalLogo : WhiteHorizontalLogo; return (
Plane logo
Plane background pattern

Welcome aboard Plane!

Plane Logo

Get started by setting up your instance and workspace

); };