feat(frontend): dinamyc logo and company link

This commit is contained in:
leandrofars 2024-07-05 14:04:09 -03:00
parent 1da6678c09
commit 10f950190f

View File

@ -4,8 +4,6 @@ import Link from 'next/link'
import { Box, Typography, Unstable_Grid2 as Grid } from '@mui/material'; import { Box, Typography, Unstable_Grid2 as Grid } from '@mui/material';
import { Logo } from 'src/components/logo'; import { Logo } from 'src/components/logo';
// TODO: Change subtitle text
export const Layout = (props) => { export const Layout = (props) => {
const { children } = props; const { children } = props;
@ -70,17 +68,12 @@ export const Layout = (props) => {
}} }}
> >
<Box sx={{ p: 3 }}> <Box sx={{ p: 3 }}>
<Link href="https://oktopus.app.br" target="_blank"> <Link href="http://localhost/companylink" target="_blank">
<img <img
alt="" alt=""
src="/assets/oktopus.png" src="http://localhost:8004/images/logo.png"
/> />
</Link> </Link>
<Typography
align="center"
sx={{ mb: 3 }}
>
</Typography>
</Box> </Box>
</Grid> </Grid>
</Grid> </Grid>