chore: add github link to project

This commit is contained in:
leandrofars 2023-10-05 01:51:35 -03:00
parent 3497572c50
commit 3f55818b1b
2 changed files with 15 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

View File

@ -52,10 +52,25 @@ export const Layout = withAuthGuard((props) => {
onClose={() => setOpenNav(false)}
open={openNav}
/>
<LayoutRoot>
<LayoutContainer>
{children}
</LayoutContainer>
<div style={{
position:"fixed",
bottom:"5px",
right:"5px",
cursor:"pointer"
}}>
<a href='https://github.com/OktopUSP/oktopus' target='blank'>
<img
src="assets/general/github-mark.png"
width={"30px"}
>
</img>
</a>
</div>
</LayoutRoot>
</>
);