// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 import { I18n } from '@aws-amplify/core'; import Container from 'react-bootstrap/Container'; import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; import Jumbotron from 'react-bootstrap/Jumbotron'; /** * PageNotFound returns an error when path does not match. * @returns Page not found error message */ export default function PageNotFound(): JSX.Element { return (

{I18n.get('page.not.found')}: {window.location.pathname}

); }