diff --git a/src/components/NotFound.js b/src/components/NotFound.js new file mode 100644 index 0000000..ff2f8f3 --- /dev/null +++ b/src/components/NotFound.js @@ -0,0 +1,17 @@ +import React from "react"; +import NoResults from "../assets/no-results.png"; +import styles from "../styles/NotFound.module.css"; +import Asset from "../components/Asset"; + +const NotFound = () => { + return ( +
+ +
+ ); +}; + +export default NotFound;