iris account registration

This commit is contained in:
Martti Malmi
2023-09-27 11:41:26 +03:00
parent fc38049b87
commit ecb0f0e78a
8 changed files with 479 additions and 1 deletions

View File

@ -45,6 +45,7 @@ import { db } from "Db";
import { preload, RelayMetrics, UserCache, UserRelays } from "Cache";
import { LoginStore } from "Login";
import { SnortDeckLayout } from "Pages/DeckLayout";
import FreeNostrAddressPage from "./Pages/FreeNostrAddressPage";
const WasmQueryOptimizer = {
expandFilter: (f: ReqFilter) => {
@ -163,6 +164,10 @@ export const router = createBrowserRouter([
element: <SettingsPage />,
children: SettingsRoutes,
},
{
path: "/free-nostr-address",
element: <FreeNostrAddressPage />,
},
{
path: "/nostr-address",
element: <NostrAddressPage />,