import { cn } from "@/utils/helpers"; import { GradientFadedBackground } from "@/components/GradientFadedBackground"; export const Card = ({ children, className, }: { children: React.ReactNode; className?: string; }) => { return (
{children}
); };