import { Link } from "react-router-dom"; import { ArrowRight } from "lucide-react"; import { cn } from "@/lib/utils"; interface ThemeCardProps { title: string; description: string; path: string; icon?: React.ReactNode; className?: string; } const ThemeCard = ({ title, description, path, icon, className }: ThemeCardProps) => { return (
{icon && (
{icon}
)}

{title}

{description}

); }; export default ThemeCard;