build(deps): bump Next.js to v13

This commit is contained in:
Divlo
2022-12-13 11:38:07 +01:00
parent ccaf5234ed
commit 734357b396
29 changed files with 3430 additions and 4427 deletions

View File

@ -44,13 +44,12 @@ export const Input: React.FC<InputProps> = (props) => {
{label}
</label>
{type === 'password' && showForgotPassword ? (
<Link href='/authentication/forgot-password'>
<a
className='text-center font-headline text-xs text-green-800 hover:underline dark:text-green-400 sm:text-sm'
data-cy='forgot-password-link'
>
{t('authentication:forgot-password')}
</a>
<Link
href='/authentication/forgot-password'
className='text-center font-headline text-xs text-green-800 hover:underline dark:text-green-400 sm:text-sm'
data-cy='forgot-password-link'
>
{t('authentication:forgot-password')}
</Link>
) : null}
</div>