Harden onion boot flow and deepen site surfaces

Add persistent onion key backup and restore, improve startup resilience, and flesh out the major site verticals with richer navigation, search coverage, and operator documentation.

Made-with: Cursor
This commit is contained in:
drjones
2026-04-07 21:35:52 -07:00
parent 52432dccfa
commit 78a071ba02
162 changed files with 21692 additions and 39 deletions

View File

@@ -0,0 +1,17 @@
"use client";
import type { ReactNode } from "react";
import { AccountProvider } from "@/contexts/AccountContext";
import { CartProvider } from "@/contexts/CartContext";
import { WalletProvider } from "@/contexts/WalletContext";
/** Client-only wrappers so wallet + persistent account work on every route. */
export default function AppProviders({ children }: { children: ReactNode }) {
return (
<WalletProvider>
<AccountProvider>
<CartProvider>{children}</CartProvider>
</AccountProvider>
</WalletProvider>
);
}