import type { ReactNode } from "react"; import { ArrowRight } from "lucide-react"; import { cn } from "@/lib/utils"; const BentoGrid = ({ children, className, }: { children: ReactNode; className?: string; }) => { return (
{children}
); }; const BentoCard = ({ name, className, background, Icon, description, href, cta, }: { name: string; className: string; background: ReactNode; Icon: any; description: string; href: string; cta: string; }) => (
{background}

{name}

{description}

{cta}
); export { BentoCard, BentoGrid };