import styled from "styled-components" import { Helmet } from "react-helmet-async" import MainContent from "../components/MainContent" const StyledNotFound = styled(MainContent)` text-align: center; ` const Styled404 = styled.h1` font-size: 5rem; ` const NotFound = () => { return ( <> pomp | 404 404
Page was not found :(
) } export default NotFound