'use client' import { motion } from 'framer-motion' import { ReactNode } from 'react' interface GlassCardProps { children: ReactNode className?: string onClick?: () => void delay?: number hover?: boolean } export default function GlassCard({ children, className = '', onClick, delay = 0, hover = true }: GlassCardProps) { return ( {children} ) }