We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccee2be commit bee9c3eCopy full SHA for bee9c3e
src/app/[locale]/(auth)/login/page.tsx
@@ -1,6 +1,7 @@
1
'use client';
2
3
import Logo from '@/components/common/Logo';
4
+import { Link } from '@/navigation';
5
import { yupResolver } from '@hookform/resolvers/yup';
6
import { Box, Stack, TextField, Typography } from '@mui/material';
7
import Button from '@mui/material/Button';
@@ -48,7 +49,9 @@ const Page = () => {
48
49
pt: 2,
50
}}
51
>
- <Logo />
52
+ <Link href="/">
53
+ <Logo />
54
+ </Link>
55
</Box>
56
<Typography
57
sx={{
0 commit comments