import type { LucideIcon } from 'lucide-react'; import { cn } from '@/lib/utils'; export function ActionTile({ icon: Icon, label, description, className, onClick }: { icon: LucideIcon; label: string; description?: string; className?: string; onClick?: () => void; }) { const content = ( <>
{label}
{description ?

{description}

: null} ); const baseClass = cn('flex min-h-[92px] flex-col items-center justify-center gap-2 rounded-[22px] bg-[#f4f5f8] p-3 text-center', className); if (onClick) { return ( ); } return
{content}
; } export function SectionTitle({ children }: { children: React.ReactNode }) { return

{children} ›

; }