/** * Copyright (c) 2023-present Plane Software, Inc. and contributors * SPDX-License-Identifier: AGPL-3.0-only * See the LICENSE file for details. */ type Props = { isSignUp?: boolean; }; export function TermsAndConditions(props: Props) { const { isSignUp = false } = props; return (

{isSignUp ? "By creating an account" : "By signing in"}, you agree to our{" \n"} Terms of Service {" "} and{" "} Privacy Policy {"."}

); }