add github button

This commit is contained in:
Calli
2023-06-23 21:32:26 +03:00
parent b3abfe0574
commit 808d983bd1
3 changed files with 17 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
import { Box, Button } from "@mui/material";
export const GitHubButton = () => {
return (
<Box>
<Button
href="https://github.com/calli-eve/eve-pi"
target="_blank"
style={{ width: "100%" }}
>
GitHub
</Button>
</Box>
);
};