import { Button, Typography } from 'antd'; import { Link } from 'react-router-dom'; // import ImgRobot from '../../assets/freepik/404.png'; const { Title, Paragraph, Text } = Typography; const NotFound = () => { return (
Oops... You seem lost. We couldn't find the page you were looking for. Let us take you back to the main page. {/* 404 Not Found */} Illustration by{' '} Freepik
); }; export default NotFound;