Files
plane/apps/admin/components/instance/instance-not-ready.tsx
T

33 lines
1.1 KiB
TypeScript
Raw Normal View History

2026-01-27 13:54:22 +05:30
/**
* Copyright (c) 2023-present Plane Software, Inc. and contributors
* SPDX-License-Identifier: AGPL-3.0-only
* See the LICENSE file for details.
*/
2024-05-14 20:54:49 +05:30
import Link from "next/link";
import { Button } from "@plane/propel/button";
2024-05-08 23:01:20 +05:30
// assets
import PlaneTakeOffImage from "@/app/assets/images/plane-takeoff.png?url";
2024-05-08 23:01:20 +05:30
export function InstanceNotReady() {
return (
2026-03-02 20:40:50 +05:30
<div className="relative container mx-auto flex h-full w-full items-center justify-center px-5">
<div className="relative w-auto max-w-2xl space-y-8 py-10">
<div className="relative flex flex-col items-center justify-center space-y-4">
<h1 className="pb-3 text-24 font-bold">Welcome aboard Plane!</h1>
<img src={PlaneTakeOffImage} alt="Plane Logo" />
2026-03-02 20:40:50 +05:30
<p className="text-14 font-medium text-placeholder">Get started by setting up your instance and workspace</p>
</div>
2024-05-08 23:01:20 +05:30
<div>
<Link href={"/setup/?auth_enabled=0"}>
2025-12-12 20:50:14 +05:30
<Button size="xl" className="w-full">
Get started
</Button>
</Link>
</div>
2024-05-08 23:01:20 +05:30
</div>
</div>
);
}