import { cn } from "@/lib/utils"; import { motion } from "framer-motion"; export const BentoGrid = ({ className, children, }: { className?: string; children?: React.ReactNode; }) => { return (
{children}
); }; export const BentoGridItem = ({ className, title, description, header, icon, onClick, }: { className?: string; title?: string | React.ReactNode; description?: string | React.ReactNode; header?: React.ReactNode; icon?: React.ReactNode; onClick?: () => void; }) => { return ( {header}
{icon}
{title}
{description}
); };