{
if (fm.title === "Next.js") {
setCurrentStep(currentStep + 1);
}
}}
className={cn(
"flex flex-col items-center gap-4 border p-6 rounded-md w-5/12 flex-grow h-44 relative",
fm.title !== "Next.js"
? "opacity-55"
: "hover:ring-1 transition-all ring-border hover:bg-background duration-200 ease-in-out cursor-pointer",
)}
key={fm.title}
>
{fm.title !== "Next.js" && (
Coming Soon
)}
{fm.description}
))}