import { cn } from "@/lib/utils"; import type { ReactNode } from "react"; type PropsType = { title?: string | ReactNode; children: ReactNode; className?: string; }; export function ShowcaseSection({ title, children, className }: PropsType) { return (