Move JS metadata exports out of page.mdx files into per-directory layout.tsx files. MDX files now contain pure markdown content, making them render cleanly on GitHub without visible JS import/export lines. No content changes — only the metadata mechanism is relocated. Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
8 lines
202 B
TypeScript
8 lines
202 B
TypeScript
import { pageMetadata } from "@/lib/page-metadata";
|
|
|
|
export const metadata = pageMetadata("diffing");
|
|
|
|
export default function Layout({ children }: { children: React.ReactNode }) {
|
|
return children;
|
|
}
|