Moved from maxwell/blog to standalone repository. - Next.js research journal application - Notes 001-005 with YAML/MD content structure - Claude Code configuration for blog development Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
16 lines
341 B
TypeScript
16 lines
341 B
TypeScript
import { ReactNode } from "react";
|
|
|
|
interface PageLayoutProps {
|
|
children: ReactNode;
|
|
}
|
|
|
|
export function PageLayout({ children }: PageLayoutProps) {
|
|
return (
|
|
<div className="min-h-screen bg-background">
|
|
<article className="mx-auto max-w-[800px] px-6 py-16 text-foreground">
|
|
{children}
|
|
</article>
|
|
</div>
|
|
);
|
|
}
|