diff --git a/src/pages/photogallery.tsx b/src/pages/photogallery.tsx new file mode 100644 index 0000000..30dcef7 --- /dev/null +++ b/src/pages/photogallery.tsx @@ -0,0 +1,10 @@ +import { navigate } from 'gatsby'; +import React, { useEffect } from 'react'; + +export default function RedirectGallery() { + useEffect(() => { + navigate('/'); + }, []); + return null; + +} \ No newline at end of file