Skip to content

Commit

Permalink
Merge pull request #616 from DeXter-on-Radix/add-contribute-route
Browse files Browse the repository at this point in the history
add contribute short route
  • Loading branch information
Radstakes authored Nov 29, 2024
2 parents 93f0f6d + c432866 commit 8d44527
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/app/contribute/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
"use client";

import { useEffect } from "react";
import { useRouter } from "next/navigation";

const Contribute = () => {
const router = useRouter();

useEffect(() => {
router.push(
"https://github.com/DeXter-on-Radix/website/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22"
);
}, [router]);

return null;
};

export default Contribute;

0 comments on commit 8d44527

Please sign in to comment.