This commit is contained in:
Dawid Kubicki 2020-01-19 18:57:54 +01:00
parent 7df0458c01
commit 07c8c92f0a
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ const LoginArea = props => {
return (
<Link href="/register" accountType={props.accountType} >
<span className={isDeveloperAccount ? "login-area developer-account" : "login-area company-account"}>
<span>Utwórz kontro {isDeveloperAccount ? 'programisty' : 'firmy'}</span>
<span>Utwórz konto {isDeveloperAccount ? 'programisty' : 'firmy'}</span>
<span className="account-icon">{isDeveloperAccount ? <FontAwesomeIcon icon={faUserCheck} /> : <FontAwesomeIcon icon={faBuilding} />}</span>
</span>
</Link>