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
6 lines
226 B
TypeScript
6 lines
226 B
TypeScript
import ExchangeSiteChrome from "@/components/exchange/ExchangeSiteChrome";
|
|
|
|
export default function ExchangeLayout({ children }: { children: React.ReactNode }) {
|
|
return <ExchangeSiteChrome>{children}</ExchangeSiteChrome>;
|
|
}
|