import { faEyeSlash as fasEyeSlash } from "@fortawesome/free-regular-svg-icons"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { Box, Center, Container, Text, Title } from "@mantine/core"; import { FunctionComponent } from "react"; const NotFound: FunctionComponent = () => { return (
<Box component="span" mr="md"> <FontAwesomeIcon icon={fasEyeSlash}></FontAwesomeIcon> </Box> 404
The Request URL No Found
); }; export default NotFound;