"use client"; import { cn } from "@/lib/utils"; import type { ReactNode } from "react"; interface GlassCardProps { children: ReactNode; className?: string; hover?: boolean; variant?: "default" | "strong"; } export default function GlassCard({ children, className, hover = true, variant = "default", }: GlassCardProps) { return (
{children}
); }