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