Skip to content

Commit

Permalink
Merge pull request #70 from inkonchain/fix/set-up-redirect
Browse files Browse the repository at this point in the history
fix: set up redirect
  • Loading branch information
ink-victor authored Feb 25, 2025
2 parents 1d54e03 + f1d51cf commit 06504d4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/app/[locale]/dashboard/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { redirect } from "next/navigation";

export default function DashboardPage() {
redirect("/");
}
1 change: 1 addition & 0 deletions src/routing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ export const routing = defineRouting({
pathnames: {
"#": "/#",
"/": "/",
"/dashboard": "/",
"/testnet-bridge": "/testnet-bridge",
"/apps": "/apps",
"/apps/[category]": "/apps/[category]",
Expand Down

0 comments on commit 06504d4

Please sign in to comment.