From 516ebb59c3a383748dd5bb8880fa9bedf73830d5 Mon Sep 17 00:00:00 2001 From: oxravenz Date: Sat, 23 May 2026 20:00:45 +0000 Subject: [PATCH] fix: add /bounties alias route redirecting to /bounty --- app/bounties/page.tsx | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 app/bounties/page.tsx diff --git a/app/bounties/page.tsx b/app/bounties/page.tsx new file mode 100644 index 00000000..fa31f78b --- /dev/null +++ b/app/bounties/page.tsx @@ -0,0 +1,5 @@ +import { redirect } from 'next/navigation'; + +export default function BountiesAliasPage() { + redirect('/bounty'); +}