Skip to content

Commit

Permalink
Redirect the gallery to the old gallery
Browse files Browse the repository at this point in the history
  • Loading branch information
kuzdogan committed Oct 25, 2024
1 parent c7dc1a3 commit f391887
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/pages/gallery.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import React, { useEffect } from "react";
import { navigate } from "gatsby";

const GalleryPage = () => {
useEffect(() => {
navigate("http://2023.protocol.berlin/gallery/");
}, []);

return null;
};

export default GalleryPage;

0 comments on commit f391887

Please sign in to comment.