import React, { FC } from "react"; import Link from "next/link"; type Props = { isSignUp?: boolean; }; export const TermsAndConditions: FC = (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 {"."}

); };