"use client" import { cn } from "@/lib/utils" interface PageLayoutProps { children: React.ReactNode className?: string } export function PageLayout({ children, className }: PageLayoutProps) { return (