import * as React from "react"; import { Link } from "gatsby"; import styled from "@emotion/styled"; import BaseLayout from "../components/BaseLayout"; import { BannerBackground } from "../components/BannerBackground"; const Background = styled(BannerBackground)` max-height: 100vh; max-width: 100vw; `; const Container = styled.div` color: #505050; font-size: 1.5em; font-weight: 500; line-height: 1.5; height: 100vh; width: 100vw; display: flex; justify-content: center; align-items: center; text-align: center; backdrop-filter: blur(5px); @media (prefers-color-scheme: dark) { color: white; } `; const FourOhFourPage = (): React.ReactElement => (

404!

Maybe, go back to the home page?
); export default FourOhFourPage;