mirror of
https://github.com/makeplane/plane.git
synced 2026-06-13 19:19:54 +00:00
83fdebf64d
- Add jscodeshift-based codemod to convert arrow function components to function declarations - Support React.FC, observer-wrapped, and forwardRef components - Include comprehensive test suite covering edge cases - Add npm script to run transformer across codebase - Target only .tsx files in source directories, excluding node_modules and declaration files * [WEB-5459] chore: updates after running codemod --------- Co-authored-by: sriramveeraghanta <veeraghanta.sriram@gmail.com>
31 lines
1007 B
TypeScript
31 lines
1007 B
TypeScript
"use client";
|
|
|
|
import Link from "next/link";
|
|
import { Button } from "@plane/propel/button";
|
|
// assets
|
|
import PlaneTakeOffImage from "@/app/assets/images/plane-takeoff.png?url";
|
|
|
|
export function InstanceNotReady() {
|
|
return (
|
|
<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>
|
|
<img 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>
|
|
</div>
|
|
|
|
<div>
|
|
<Link href={"/setup/?auth_enabled=0"}>
|
|
<Button size="lg" className="w-full">
|
|
Get started
|
|
</Button>
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|