feat: about

This commit is contained in:
2023-11-03 02:39:42 +09:00
parent 2f1d48792a
commit 71a05dd13c
6 changed files with 756 additions and 1 deletions

View File

@ -50,6 +50,7 @@ import { SnortDeckLayout } from "Pages/DeckLayout";
import FreeNostrAddressPage from "./Pages/FreeNostrAddressPage";
import { ListFeedPage } from "Pages/ListFeedPage";
import { updateRelayConnections } from "Hooks/useLoginRelays";
import { AboutPage } from "Pages/About";
const WasmQueryOptimizer = {
expandFilter: (f: ReqFilter) => {
@ -211,6 +212,10 @@ const mainRoutes = [
path: "/list-feed/:id",
element: <ListFeedPage />,
},
{
path: "/about",
element: <AboutPage />,
},
...NewUserRoutes,
...WalletRoutes,
] as Array<RouteObject>;