Skip to content

Commit

Permalink
Merge pull request #565 from DeXter-on-Radix/add-roadmap-route
Browse files Browse the repository at this point in the history
add redirect to /roadmap route
  • Loading branch information
Radstakes authored Aug 21, 2024
2 parents 95188e9 + bdbc2d5 commit 392f31a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/app/roadmap/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 Roadmap = () => {
const router = useRouter();

useEffect(() => {
router.push(
"https://ductus.notion.site/DeXter-Roadmap-e8faed71fe1c4cdf95fb247f682c0d3a"
);
}, [router]);

return null;
};

export default Roadmap;

0 comments on commit 392f31a

Please sign in to comment.