import { AnimatePresence, motion } from "framer-motion"; type Props = { visible?: boolean; className?: string; }; export function GlowEffect({ visible, className }: Props) { return ( {visible && } ) }