import Link from 'next/link';
import { ReactNode } from 'react';
import { cx } from '@nx/nx-dev/ui-primitives';
export const BentoGrid = ({
className,
children,
}: {
className?: string;
children?: ReactNode;
}) => {
return (
{children}
);
};
export const BentoGridItem = ({
className,
title = null,
description = null,
header,
url = null,
icon,
}: {
className?: string;
title?: string | ReactNode | null;
description?: string | ReactNode | null;
header: ReactNode;
icon?: ReactNode;
url?: string | null;
}) => {
return (
{header}
{icon} {title}
{description && (
{description}
)}
{url ? (
→
) : null}
);
};