mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-17 10:11:31 +10:00
- integrating sign in with google
- set up dark mode context and other services
This commit is contained in:
12
src/pages/404.js
Normal file
12
src/pages/404.js
Normal file
@ -0,0 +1,12 @@
|
||||
import { navigate } from "gatsby";
|
||||
import { useEffect } from "react";
|
||||
|
||||
const NotFoundPage = () => {
|
||||
useEffect(() => {
|
||||
navigate("/");
|
||||
}, []);
|
||||
|
||||
return null;
|
||||
};
|
||||
|
||||
export default NotFoundPage;
|
||||
Reference in New Issue
Block a user