import { Box, Typography, Button, Container } from '@mui/material'; import { useNavigate } from 'react-router-dom'; export default function NotFoundPage() { const navigate = useNavigate(); return ( 404 Страница не найдена ); }