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