import { cn } from "@/lib/utils"; import React from "react"; interface GlassCardProps extends React.HTMLAttributes { children: React.ReactNode; className?: string; hoverEffect?: boolean; } export const GlassCard = ({ children, className, hoverEffect = false, ...props }: GlassCardProps) => { return (
{children}
); };