/* eslint css-modules/no-unused-class: [2, { markAsUsed: ['link'] }] */ import React from 'react'; import cx from 'classnames'; import { Link } from 'react-router-dom'; import styles from '../IntroPages.module.css'; function NotFoundPage() { return (

This page does not exist

Go back to main page
); } export default NotFoundPage;