import * as React from 'react'; import { cn } from '@/lib/utils'; interface AppPageProps { title: string; description?: string; icon?: React.ElementType; children: React.ReactNode; className?: string; } export function AppPage({ title, description, icon: Icon, children, className }: AppPageProps) { return (
{/* Page header */}
{Icon && (
)}

{title}

{description && (

{description}

)}
{children}
); }