import * as React from 'react'; import styled from 'styled-components/macro'; import { P } from './P'; import { Link } from 'app/components/Link'; import { NavBar } from 'app/components/NavBar'; import { Helmet } from 'react-helmet-async'; import { StyleConstants } from 'styles/StyleConstants'; export function NotFoundPage() { return ( <> 404 Page Not Found 4 <span role="img" aria-label="Crying Face"> 😢 </span> 4

Page not found.

Return to Home Page
); } const Wrapper = styled.div` height: calc(100vh - ${StyleConstants.NAV_BAR_HEIGHT}); display: flex; align-items: center; justify-content: center; flex-direction: column; min-height: 320px; `; const Title = styled.div` margin-top: -8vh; font-weight: bold; color: ${p => p.theme.text}; font-size: 3.375rem; span { font-size: 3.125rem; } `;