mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
547a76ae55
* dev: add admin and space base url * fix: formatting * dev: add app,space and admin base url to the api env * fix: updated app base urls redirection * dev: add change password endpoint * dev: add none as default for base url * dev: space password management endpoints * fix: docker env update * fix: docker and env settings * fix: docker changes * fix: next config update --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com> Co-authored-by: guru_sainath <gurusainath007@gmail.com>
52 lines
2.1 KiB
TypeScript
52 lines
2.1 KiB
TypeScript
import { FC } from "react";
|
|
import { observer } from "mobx-react";
|
|
import Image from "next/image";
|
|
import { Button } from "@plane/ui";
|
|
// helpers
|
|
import { ADMIN_BASE_URL, ADMIN_BASE_PATH } from "@/helpers/common.helper";
|
|
// hooks
|
|
// import { useInstance } from "@/hooks/store";
|
|
// images
|
|
import PlaneTakeOffImage from "@/public/plane-takeoff.png";
|
|
import BluePlaneLogoWithoutText from "public/plane-logos/blue-without-text.png";
|
|
|
|
export const InstanceNotReady: FC = observer(() => {
|
|
// hooks
|
|
// const { instance } = useInstance();
|
|
|
|
const GOD_MODE_URL = encodeURI(ADMIN_BASE_URL + ADMIN_BASE_PATH + "setup/?auth_enabled=0");
|
|
|
|
return (
|
|
<div className="relative h-screen max-h-max w-full overflow-hidden overflow-y-auto flex flex-col">
|
|
<div className="flex-shrink-0 h-[100px]">
|
|
<div className="relative h-full container mx-auto px-5 lg:px-0 flex items-center justify-between gap-5 z-50">
|
|
<div className="flex items-center gap-x-2 py-10">
|
|
<Image src={BluePlaneLogoWithoutText} height={30} width={30} alt="Plane Logo" />
|
|
<span className="text-2xl font-semibold sm:text-3xl">Plane</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="w-full flex-grow px-5 lg:px-0 mb-[100px]">
|
|
<div className="h-full w-full relative container px-5 mx-auto flex justify-center items-center">
|
|
<div className="w-auto max-w-2xl relative space-y-8 py-10">
|
|
<div className="relative flex flex-col justify-center items-center space-y-4">
|
|
<h1 className="text-3xl font-bold pb-3">Welcome aboard Plane!</h1>
|
|
<Image src={PlaneTakeOffImage} alt="Plane Logo" />
|
|
<p className="font-medium text-base text-onboarding-text-400">
|
|
Get started by setting up your instance and workspace
|
|
</p>
|
|
</div>
|
|
<div>
|
|
<a href={GOD_MODE_URL}>
|
|
<Button size="lg" className="w-full">
|
|
Get started
|
|
</Button>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
});
|