- designing the dashboard

- resume preview
- create resume modal
This commit is contained in:
Amruth Pillai
2020-07-04 10:26:29 +05:30
parent dd5e594dc9
commit e1f1d84201
27 changed files with 556 additions and 26 deletions

View File

@ -1,7 +1,7 @@
import { navigate } from "gatsby";
import { useEffect } from "react";
const NotFoundPage = () => {
const NotFound = () => {
useEffect(() => {
navigate("/");
}, []);
@ -9,4 +9,4 @@ const NotFoundPage = () => {
return null;
};
export default NotFoundPage;
export default NotFound;