import { Box, Button, IconButton, Typography } from "@mui/material"; import { WindowButtons } from "./WindowButtons"; import { BugReport, BugReportOutlined } from "@mui/icons-material"; import { useRouter } from "next/router"; import { Settings } from "./Settings/Settings"; export const HeaderBar = () => { const router = useRouter(); return ( hello this is the left side { router.push("/testing"); }} > ); };