diff --git a/src/app/components/AppBar/AppBar.tsx b/src/app/components/AppBar/AppBar.tsx index 9aab3ef..a77f947 100644 --- a/src/app/components/AppBar/AppBar.tsx +++ b/src/app/components/AppBar/AppBar.tsx @@ -19,6 +19,8 @@ import { LoginButton } from "../Login/LoginButton"; import { PlanModeButton } from "../PlanModeButton/PlanModeButton"; import { SettingsButton } from "../Settings/SettingsButtons"; import { AlertModeButton } from "../AlertModeButton/AlertModeButton"; +import { SupportButton } from "../SupportButton/SupportButton"; + function ResponsiveAppBar() { const [anchorElNav, setAnchorElNav] = React.useState( @@ -103,6 +105,9 @@ function ResponsiveAppBar() { + + + @@ -150,6 +155,7 @@ function ResponsiveAppBar() { + diff --git a/src/app/components/SupportButton/SupportButton.tsx b/src/app/components/SupportButton/SupportButton.tsx new file mode 100644 index 0000000..81f3229 --- /dev/null +++ b/src/app/components/SupportButton/SupportButton.tsx @@ -0,0 +1,23 @@ +import { Box, Button, Tooltip } from "@mui/material"; +export const SupportButton = () => { + return ( + + + + + + ); +};