fix: github image

This commit is contained in:
leandrofars 2023-10-05 02:20:31 -03:00
parent ae88aefd73
commit 93134db584

View File

@ -4,6 +4,7 @@ import { styled } from '@mui/material/styles';
import { withAuthGuard } from 'src/hocs/with-auth-guard'; import { withAuthGuard } from 'src/hocs/with-auth-guard';
import { SideNav } from './side-nav'; import { SideNav } from './side-nav';
import { TopNav } from './top-nav'; import { TopNav } from './top-nav';
import Image from 'next/image'
const SIDE_NAV_WIDTH = 280; const SIDE_NAV_WIDTH = 280;
@ -64,11 +65,13 @@ export const Layout = withAuthGuard((props) => {
cursor:"pointer" cursor:"pointer"
}}> }}>
<a href='https://github.com/OktopUSP/oktopus' target='blank'> <a href='https://github.com/OktopUSP/oktopus' target='blank'>
<img <Image
src="assets/general/github-mark.png" alt="github logo"
width={"30px"} src="/assets/general/github-mark.png"
width="30"
height="30"
> >
</img> </Image>
</a> </a>
</div> </div>
</LayoutRoot> </LayoutRoot>