import React from "react"; import Container from "components/Container"; import { Button } from "components/Button/Button"; import Link from "components/typography/Link"; const NotFound = () => { return (
404

Page does not exist

Maybe you got a broken link, or maybe you made a misprint in the address bar

); }; export default NotFound;