import * as React from 'react' import { cn } from '../../utils/cn' export interface PageShellProps { title: string description?: string actions?: React.ReactNode children: React.ReactNode className?: string } /** * PageShell - Consistent page wrapper component * * Provides standardized page layout with: * - Title (h1, text-2xl font-bold) * - Optional description (text-sm text-content-secondary) * - Optional actions slot for buttons * - Responsive flex layout (column on mobile, row on desktop) * - Consistent page spacing */ export function PageShell({ title, description, actions, children, className, }: PageShellProps) { return (
{description}
)}