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:
16
app/barter/layout.tsx
Normal file
16
app/barter/layout.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import { Suspense } from "react";
|
||||
import BarterPitChrome from "@/components/barter/BarterPitChrome";
|
||||
|
||||
export default function BarterLayout({ children }: { children: React.ReactNode }) {
|
||||
return (
|
||||
<BarterPitChrome>
|
||||
<Suspense
|
||||
fallback={
|
||||
<div className="py-16 text-center font-mono text-sm text-[#5a7d62]">Loading trading floor…</div>
|
||||
}
|
||||
>
|
||||
{children}
|
||||
</Suspense>
|
||||
</BarterPitChrome>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user