import React from "react"; import Container from "components/Container"; import { Button } from "components/Button/Button"; import Link from "components/typography/Link"; import Lottie from "react-lottie"; import animationData from "../../assets/lotties/notFoundAnimation.json"; const NotFound = () => { const defaultOptions = { loop: true, autoplay: true, animationData: animationData, rendererSettings: { preserveAspectRatio: "xMidYMid slice", }, }; 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;