diff --git a/src/app/[locale]/dashboard/page.tsx b/src/app/[locale]/dashboard/page.tsx new file mode 100644 index 0000000..24119b8 --- /dev/null +++ b/src/app/[locale]/dashboard/page.tsx @@ -0,0 +1,5 @@ +import { redirect } from "next/navigation"; + +export default function DashboardPage() { + redirect("/"); +} diff --git a/src/routing.ts b/src/routing.ts index 628297d..2e1fbdc 100644 --- a/src/routing.ts +++ b/src/routing.ts @@ -71,6 +71,7 @@ export const routing = defineRouting({ pathnames: { "#": "/#", "/": "/", + "/dashboard": "/", "/testnet-bridge": "/testnet-bridge", "/apps": "/apps", "/apps/[category]": "/apps/[category]",