import type { ReactNode } from "react"; import { AppCard } from "@/components/ui/app-card"; import { cn } from "@/lib/utils"; type BentoCardProps = { eyebrow: string; title: string; description?: string; icon?: ReactNode; className?: string; children?: ReactNode; }; export function BentoCard({ eyebrow, title, description, icon, className, children, }: BentoCardProps) { return (

{eyebrow}

{title}

{description ? (

{description}

) : null}
{icon ? (
{icon}
) : null}
{children}
); }