update top navigation and overal theme

This commit is contained in:
Calli
2023-06-24 16:23:18 +03:00
parent 37f9bdeccf
commit 7902408b04
9 changed files with 221 additions and 66 deletions

View File

@@ -1,14 +1,17 @@
import { Box, Button } from "@mui/material";
import { Box, Button, Tooltip } from "@mui/material";
export const DiscordButton = () => {
return (
<Box>
<Button
href="https://discord.gg/MDapvGyw"
target="_blank"
style={{ width: "100%" }}
>
Discord
</Button>
<Tooltip title="Come nerd out in discord about PI and this tool">
<Button
href="https://discord.gg/MDapvGyw"
target="_blank"
style={{ width: "100%" }}
sx={{ my: 2, color: "white", display: "block" }}
>
Discord
</Button>
</Tooltip>
</Box>
);
};