import styled from 'react-emotion'; import React, { useCallback } from 'react'; import { useHistory } from 'react-router-dom'; import Box from '../../muiComponents/Box'; import Button from '../../muiComponents/Button'; import Heading from '../../muiComponents/Heading'; import colors from '../../utils/styles/colors'; import { spacings } from '../../utils/styles/spacings'; import PackageImg from './img/package.svg'; export const NOT_FOUND_TEXT = "Sorry, we couldn't find it..."; export const LABEL_NOT_FOUND = "The page you're looking for doesn't exist."; export const GO_TO_HOME_PAGE = 'Go to the home page'; const EmptyPackage = styled('img')({ width: '150px', margin: '0 auto', }); const StyledHeading = styled(Heading)({ color: colors.primary, marginBottom: spacings.sm, }); const NotFound: React.FC = () => { const history = useHistory(); const handleGoHome = useCallback(() => { history.push('/'); }, [history]); return ( {NOT_FOUND_TEXT} ); }; export default NotFound;