import { ArrowRightIcon } from "@radix-ui/react-icons"; import { ComponentPropsWithoutRef, ReactNode } from "react"; import { Button } from "@/components/ui/button"; import { cn } from "@/lib/utils"; interface BentoGridProps extends ComponentPropsWithoutRef<"div"> { children: ReactNode; className?: string; } interface BentoCardProps extends ComponentPropsWithoutRef<"div"> { name: string; className: string; background: ReactNode; Icon: React.ElementType; description: string; href: string; cta: string; } const BentoGrid = ({ children, className, ...props }: BentoGridProps) => { return (
{children}
); }; const BentoCard = ({ name, className, background, Icon, description, href, cta, ...props }: BentoCardProps) => (
{background}

{name}

{description}

); export { BentoCard, BentoGrid };