diff --git a/src/app/components/AppBar/AppBar.tsx b/src/app/components/AppBar/AppBar.tsx index 59c181b..945cf6b 100644 --- a/src/app/components/AppBar/AppBar.tsx +++ b/src/app/components/AppBar/AppBar.tsx @@ -14,6 +14,7 @@ import { DowloadButton } from "../Backup/DowloadButton"; import { UploadButton } from "../Backup/UploadButton"; import { DiscordButton } from "../Discord/DiscordButton"; import { GitHubButton } from "../Github/GitHubButton"; +import { CCPButton } from "../CCP/CCPButton"; function ResponsiveAppBar() { const [anchorElNav, setAnchorElNav] = React.useState( @@ -95,6 +96,9 @@ function ResponsiveAppBar() { + + + @@ -122,6 +126,7 @@ function ResponsiveAppBar() { + diff --git a/src/app/components/CCP/CCPButton.tsx b/src/app/components/CCP/CCPButton.tsx new file mode 100644 index 0000000..b3ed637 --- /dev/null +++ b/src/app/components/CCP/CCPButton.tsx @@ -0,0 +1,21 @@ +import { Box, Button, Tooltip } from "@mui/material"; +export const CCPButton = () => { + return ( + + + + + + ); +}; diff --git a/src/app/components/MainGrid.tsx b/src/app/components/MainGrid.tsx index 41aefd7..303f77b 100644 --- a/src/app/components/MainGrid.tsx +++ b/src/app/components/MainGrid.tsx @@ -2,17 +2,13 @@ import { useContext } from "react"; import { Box, CssBaseline, - Fab, Grid, - Stack, ThemeProvider, - Tooltip, createTheme, } from "@mui/material"; import { AccountCard } from "./Account/AccountCard"; import { AccessToken } from "@/types"; import { CharacterContext } from "../context/Context"; -import CopyrightIcon from "@mui/icons-material/Copyright"; import ResponsiveAppBar from "./AppBar/AppBar"; interface Grouped { @@ -39,11 +35,6 @@ export const MainGrid = ({ sessionReady }: { sessionReady: boolean }) => { - - - - - {Object.values(groupByAccount).map((g, id) => ( @@ -55,18 +46,6 @@ export const MainGrid = ({ sessionReady }: { sessionReady: boolean }) => { ))} - - - CCP - - );