import React from 'react'; import { Box, Typography, Button, Container } from '@mui/material'; import { Link as RouterLink } from 'react-router-dom'; import SentimentDissatisfiedIcon from '@mui/icons-material/SentimentDissatisfied'; const NotFoundPage = () => { return ( 404 - Page Not Found Oops! The page you are looking for does not exist. It seems you've ventured too far into the wilderness. This natural specimen hasn't been discovered yet. ); }; export default NotFoundPage;