Skip to content

Commit

Permalink
add rakoon-revenue shortlink
Browse files Browse the repository at this point in the history
  • Loading branch information
dcts committed Jan 3, 2025
1 parent 23e7551 commit d95cb82
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 d95cb82

Please sign in to comment.