2024-04-29 06:42:33 +00:00
|
|
|
import { FC } from "react";
|
2023-11-29 15:03:08 +00:00
|
|
|
import Image from "next/image";
|
2024-04-30 14:00:42 +00:00
|
|
|
import { Button } from "@plane/ui";
|
2023-12-01 10:20:01 +00:00
|
|
|
// images
|
2024-04-30 14:00:42 +00:00
|
|
|
import PlaneTakeOffImage from "@/public/plane-takeoff.png";
|
2024-05-02 08:32:48 +00:00
|
|
|
import BluePlaneLogoWithoutText from "public/plane-logos/blue-without-text.png";
|
2024-04-29 06:42:33 +00:00
|
|
|
|
2024-04-30 14:00:42 +00:00
|
|
|
export const InstanceNotReady: FC = () => {
|
2023-11-29 15:03:08 +00:00
|
|
|
|
2024-05-01 06:17:19 +00:00
|
|
|
const planeGodModeUrl = `${process.env.NEXT_PUBLIC_GOD_MODE_URL}/god-mode/setup/?auth_enabled=0`;
|
2024-04-30 14:49:01 +00:00
|
|
|
|
2023-11-29 15:03:08 +00:00
|
|
|
return (
|
2024-04-30 14:00:42 +00:00
|
|
|
<div className="relative h-screen max-h-max w-full overflow-hidden overflow-y-auto flex flex-col">
|
2024-05-02 08:32:48 +00:00
|
|
|
<div className="flex-shrink-0 h-[100px]">
|
2024-04-30 14:00:42 +00:00
|
|
|
<div className="relative h-full container mx-auto px-5 lg:px-0 flex items-center justify-between gap-5 z-50">
|
2024-05-02 08:32:48 +00:00
|
|
|
<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>
|
2024-04-30 14:00:42 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2024-05-02 08:32:48 +00:00
|
|
|
<div className="w-full flex-grow px-5 lg:px-0 mb-[100px]">
|
2024-04-30 14:00:42 +00:00
|
|
|
<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" />
|
2024-05-02 08:32:48 +00:00
|
|
|
<p className="font-medium text-base text-onboarding-text-400">
|
2024-04-30 14:00:42 +00:00
|
|
|
Get started by setting up your instance and workspace
|
|
|
|
</p>
|
2023-11-29 15:03:08 +00:00
|
|
|
</div>
|
2024-04-30 14:00:42 +00:00
|
|
|
<div>
|
2024-04-30 14:49:01 +00:00
|
|
|
<a href={planeGodModeUrl}>
|
2024-04-30 14:00:42 +00:00
|
|
|
<Button size="lg" className="w-full">
|
|
|
|
Get started
|
|
|
|
</Button>
|
2024-04-30 14:49:01 +00:00
|
|
|
</a>
|
2023-11-29 15:03:08 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|