Files
dark-lord/app/barter/layout.tsx
drjones 78a071ba02 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
2026-04-07 21:35:52 -07:00

17 lines
448 B
TypeScript

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>
);
}