mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
febf19ccc0
* feat: changemod space * fix: space app dir fixes * fix: build errors
34 lines
1.1 KiB
TypeScript
34 lines
1.1 KiB
TypeScript
"use client";
|
|
|
|
import React, { FC } from "react";
|
|
import Link from "next/link";
|
|
import { EAuthModes } from "./auth-forms";
|
|
|
|
type Props = {
|
|
mode: EAuthModes | null;
|
|
};
|
|
|
|
export const TermsAndConditions: FC<Props> = (props) => {
|
|
const { mode } = props;
|
|
return (
|
|
<span className="flex items-center justify-center py-6">
|
|
<p className="text-center text-sm text-onboarding-text-200 whitespace-pre-line">
|
|
{mode
|
|
? mode === EAuthModes.SIGN_UP
|
|
? "By creating an account"
|
|
: "By signing in"
|
|
: "By clicking the above button"}
|
|
, you agree to our{" \n"}
|
|
<Link href="https://plane.so/legals/terms-and-conditions" target="_blank" rel="noopener noreferrer">
|
|
<span className="text-sm font-medium underline hover:cursor-pointer">Terms of Service</span>
|
|
</Link>{" "}
|
|
and{" "}
|
|
<Link href="https://plane.so/legals/privacy-policy" target="_blank" rel="noopener noreferrer">
|
|
<span className="text-sm font-medium underline hover:cursor-pointer">Privacy Policy</span>
|
|
</Link>
|
|
{"."}
|
|
</p>
|
|
</span>
|
|
);
|
|
};
|