import React from 'react' import Head from 'next/head' import { AppPage } from '../components/AppPage' import { Bullseye, EmptyState, EmptyStateBody, EmptyStateIcon, PageSection, PageSectionVariants, Title, } from '@patternfly/react-core' import { UnknownIcon } from '@patternfly/react-icons' const NotFound = () => { return ( Page Not Found - OpenDC 404: That page does not exist The requested page is not found. Try refreshing the page if it was recently added. ) } export default NotFound