import { ReactNode } from 'react'; import { cn } from '@/lib/utils'; import { motion } from 'framer-motion'; interface PageShellProps { children: ReactNode; className?: string; fullWidth?: boolean; } export function PageShell({ children, className, fullWidth = false }: PageShellProps) { return (