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";
|
|
|
|
import { useTheme } from "next-themes";
|
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 PlaneBlackLogo from "@/public/plane-logos/black-horizontal-with-blue-logo.svg";
|
|
|
|
import PlaneWhiteLogo from "@/public/plane-logos/white-horizontal-with-blue-logo.svg";
|
|
|
|
import PlaneTakeOffImage from "@/public/plane-takeoff.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
|
|
|
const { resolvedTheme } = useTheme();
|
2023-12-01 10:20:01 +00:00
|
|
|
const planeLogo = resolvedTheme === "dark" ? PlaneWhiteLogo : PlaneBlackLogo;
|
2023-11-29 15:03:08 +00:00
|
|
|
|
2024-04-30 14:49:01 +00:00
|
|
|
const planeGodModeUrl = `${process.env.NEXT_PUBLIC_GOD_MODE_URL}/spaces?setup/?auth_enabled=0`;
|
|
|
|
|
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">
|
|
|
|
<div className="flex-shrink-0 h-[120px]">
|
|
|
|
<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">
|
|
|
|
<Image src={planeLogo} className="h-[24px] w-full" alt="Plane logo" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="w-full flex-grow">
|
|
|
|
<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-custom-text-400">
|
|
|
|
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>
|
|
|
|
);
|
|
|
|
};
|