feat: short links

This commit is contained in:
2023-03-31 10:51:50 +01:00
parent 6fe19ee29d
commit 8bd694eb15
4 changed files with 57 additions and 27 deletions

View File

@ -92,12 +92,12 @@ export const router = createBrowserRouter([
path: "/search/:keyword?",
element: <SearchPage />,
},
{
path: "/handler/*",
element: <NostrLinkHandler />,
},
...NewUserRoutes,
...WalletRoutes,
{
path: "/*",
element: <NostrLinkHandler />,
},
],
},
]);