import {Box, Container, Typography, useMediaQuery} from "@mui/material"; import imgUrl from "../img/not-found/1.png"; export const NotFoundBlock = ({img=imgUrl, headerText='OOPS! THAT PAGE CAN’T BE FOUND', text='The page you are trying to reach is not available.', marginTop='0px'}) => { const matches = useMediaQuery('(max-width:899px)'); const matches2 = useMediaQuery('(max-width:450px)'); return (
{ { headerText } { text }
) }