"use client"; import { useState } from "react"; import { Info } from "lucide-react"; export function InfoBubble({ text }: { text: string }) { const [open, setOpen] = useState(false); return ( {open && ( {text} )} ); }