import { ReactNode } from "react" interface PageWrapperProps { children: ReactNode; maxWidth?: "4xl" | "5xl" | "6xl" | "7xl" | "full"; className?: string; } export function PageWrapper({ children, maxWidth = "4xl", className = "" }: PageWrapperProps) { const maxWidthClass = { "4xl": "max-w-4xl", "5xl": "max-w-5xl", "6xl": "max-w-6xl", "7xl": "max-w-7xl", "full": "max-w-full", }[maxWidth]; return (
{children}
); } interface PageHeaderProps { title: string; subtitle?: string; className?: string; } export function PageHeader({ title, subtitle, className = "" }: PageHeaderProps) { return (

{title}

{subtitle && (

{subtitle}

)}
); }