Files
2026-05-21 23:25:56 -06:00

11 lines
362 B
TypeScript

import type { ReactNode } from "react";
import { notFound } from "next/navigation";
// Development-only previews (e.g. `/components-preview`) — no public chrome.
export default function DevLayout({ children }: { children: ReactNode }) {
if (process.env.NODE_ENV === "production") {
notFound();
}
return <main className="flex-1">{children}</main>;
}