forked from github/plane
1296b6af42
* style: updated the UI of the signin and instance setups * fix: form validations and mutations * fix: updated Link tags in accordance to next v14 * chore: latest features image, reset password redirection
39 lines
1.2 KiB
TypeScript
39 lines
1.2 KiB
TypeScript
import { useEffect, useCallback } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
import Image from "next/image";
|
|
// components
|
|
import { InstanceSetupFormRoot } from "components/instance";
|
|
// hooks
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
// images
|
|
import BluePlaneLogoWithoutText from "public/plane-logos/blue-without-text.png";
|
|
|
|
export const InstanceSetupView = observer(() => {
|
|
// store
|
|
const {
|
|
user: { fetchCurrentUser },
|
|
} = useMobxStore();
|
|
|
|
const mutateUserInfo = useCallback(() => {
|
|
fetchCurrentUser();
|
|
}, [fetchCurrentUser]);
|
|
|
|
useEffect(() => {
|
|
mutateUserInfo();
|
|
}, [mutateUserInfo]);
|
|
|
|
return (
|
|
<>
|
|
<div className="bg-onboarding-gradient-100 h-full w-full flex flex-col">
|
|
<div className="flex items-center justify-between sm:py-5 px-8 pb-4 sm:px-16 lg:px-28 ">
|
|
<div className="flex gap-x-2 py-10 items-center">
|
|
<Image src={BluePlaneLogoWithoutText} height={30} width={30} alt="Plane Logo" className="mr-2" />
|
|
<span className="font-semibold text-2xl sm:text-3xl">Plane</span>
|
|
</div>
|
|
</div>
|
|
<InstanceSetupFormRoot />
|
|
</div>
|
|
</>
|
|
);
|
|
});
|