Most sites or apps show a logo on the left corner of the screen. In Material ui there is AppBar component. The official examples don't have this snippet. Link to the official documentation: https://mui.com/material-ui/react-app-bar/
Source code viewer
import Box from '@mui/material/Box'; import Link from '@mui/material/Link'; import Toolbar from '@mui/material/Toolbar'; import AppBar from '@mui/material/AppBar'; import logo from '/assets/logo.png'; <AppBar position="static"> <Toolbar> <Link href="/"> <Box component="img" sx={{ height: 54 }} alt="Logo" src={logo} /> </Link> // ...Programming Language: ECMAScript