import React from "react"; import Box from "@mui/material/Box"; import Typography from "@mui/material/Typography"; const PageTitle = ({title = "", image = ""}) => { return ( {/* Overlay */} {/* Title */} {title.toUpperCase() || " "} ); }; export default PageTitle;