Skip to content

Commit bee9c3e

Browse files
committed
chore: add link to logo of login page
1 parent ccee2be commit bee9c3e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/app/[locale]/(auth)/login/page.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
'use client';
22

33
import Logo from '@/components/common/Logo';
4+
import { Link } from '@/navigation';
45
import { yupResolver } from '@hookform/resolvers/yup';
56
import { Box, Stack, TextField, Typography } from '@mui/material';
67
import Button from '@mui/material/Button';
@@ -48,7 +49,9 @@ const Page = () => {
4849
pt: 2,
4950
}}
5051
>
51-
<Logo />
52+
<Link href="/">
53+
<Logo />
54+
</Link>
5255
</Box>
5356
<Typography
5457
sx={{

0 commit comments

Comments
 (0)