import type { BentoCardProps } from "./BentoCard"; export default function BentoCardSmall({ color, logo, title, className, link }: BentoCardProps) { if (link) { return (

{title}

); } return (

{title}

); }