All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pages.NotFound.js Maven / Gradle / Ivy

There is a newer version: 0.80.3
Show newest version
import { Helmet }         from 'react-helmet';
import {
  Box,
  Container,
  Typography
} from '@mui/material';
import { useTranslation } from 'react-i18next';
import { useConfig }      from 'hooks/config';

const NotFound = () => {
  const {t}         = useTranslation()
  const { project } = useConfig()

  return (
    <>
      
        404 | {project}
      
      
        
          
            {t('404')}
          
          
            Not found
          
        
      
    
  );
}

export default NotFound;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy