import clsx from "clsx" import Link from "next/link" import IconArrowUpRightOnBox from "../Icons/ArrowUpRightOnBox" type CardProps = { title: string text?: string href?: string className?: string } const Card = ({ title, text, href, className }: CardProps) => { return (