Capture the current CyberLux UI, commerce, messaging, and Tor ops updates so local main can be pushed to the remote. Made-with: Cursor
17 lines
449 B
TypeScript
17 lines
449 B
TypeScript
import { Suspense } from "react";
|
|
import MarketSiteChrome from "@/components/market/MarketSiteChrome";
|
|
|
|
export default function MarketLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<MarketSiteChrome>
|
|
<Suspense
|
|
fallback={
|
|
<div className="py-16 text-center font-mono text-sm text-[#00ff41]/45">Loading catalog…</div>
|
|
}
|
|
>
|
|
{children}
|
|
</Suspense>
|
|
</MarketSiteChrome>
|
|
);
|
|
}
|