'use client'; import { ReactNode } from "react"; interface PageLayoutProps { children: ReactNode; maxWidth?: "sm" | "md" | "lg" | "xl" | "2xl" | "full"; versionInfo?: ReactNode; } export function PageLayout({ children, maxWidth = "full", versionInfo }: PageLayoutProps) { const maxWidthClasses = { sm: "max-w-3xl", md: "max-w-5xl", lg: "max-w-6xl", xl: "max-w-7xl", "2xl": "max-w-[1600px]", full: "w-full" }; return (