Skip to content

Commit

Permalink
Merge pull request #625 from DeXter-on-Radix/add-rakoon-revenue-share…
Browse files Browse the repository at this point in the history
…-shortlink

add rakoon-revenue shortlink
  • Loading branch information
Radstakes authored Jan 3, 2025
2 parents 23e7551 + d95cb82 commit 347cc42
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/app/rakoon-revenue/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 RakoonRevenue = () => {
const router = useRouter();

useEffect(() => {
router.push(
"https://docs.google.com/spreadsheets/d/1xyEob71d5c2eHuQjq1P60DXaAeeuboB2nSQFztiWviU/edit?usp=sharing"
);
}, [router]);

return null;
};

export default RakoonRevenue;

0 comments on commit 347cc42

Please sign in to comment.