forked from github/plane
chore: add Get started
button to redirect to /god-mode
to set up instance. (#4105)
This commit is contained in:
parent
84e73291cc
commit
bd470f7a90
@ -1,6 +1,11 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
import Image from "next/image";
|
import Image from "next/image";
|
||||||
|
import Link from "next/link";
|
||||||
import { useTheme } from "next-themes";
|
import { useTheme } from "next-themes";
|
||||||
|
// icons
|
||||||
|
import { UserCog2 } from "lucide-react";
|
||||||
|
// ui
|
||||||
|
import { getButtonStyling } from "@plane/ui";
|
||||||
// images
|
// images
|
||||||
import instanceNotReady from "public/instance/plane-instance-not-ready.webp";
|
import instanceNotReady from "public/instance/plane-instance-not-ready.webp";
|
||||||
import PlaneBlackLogo from "public/plane-logos/black-horizontal-with-blue-logo.svg";
|
import PlaneBlackLogo from "public/plane-logos/black-horizontal-with-blue-logo.svg";
|
||||||
@ -25,6 +30,10 @@ export const InstanceNotReady = () => {
|
|||||||
<div className="flex w-full flex-col items-center gap-5 py-12 pb-20">
|
<div className="flex w-full flex-col items-center gap-5 py-12 pb-20">
|
||||||
<h3 className="text-2xl font-medium">Your Plane instance isn{"'"}t ready yet</h3>
|
<h3 className="text-2xl font-medium">Your Plane instance isn{"'"}t ready yet</h3>
|
||||||
<p className="text-sm">Ask your Instance Admin to complete set-up first.</p>
|
<p className="text-sm">Ask your Instance Admin to complete set-up first.</p>
|
||||||
|
<Link href="/god-mode" className={`${getButtonStyling("primary", "md")} mt-4`}>
|
||||||
|
<UserCog2 className="h-3.5 w-3.5" />
|
||||||
|
Get started
|
||||||
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user