make grouping clearer and update readme

This commit is contained in:
Calli
2023-06-23 21:20:56 +03:00
parent 5146e0e4ff
commit b3abfe0574
7 changed files with 45 additions and 7 deletions

View File

@@ -0,0 +1,14 @@
import { Box, Button } from "@mui/material";
export const DiscordButton = () => {
return (
<Box>
<Button
href="https://discord.gg/MDapvGyw"
target="_blank"
style={{ width: "100%" }}
>
Discord
</Button>
</Box>
);
};