import { useEffect, useState } from "react"; import { SmartphoneIcon } from "lucide-react"; import { Button } from "@/components/ui/button"; import { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle } from "@/components/ui/dialog"; function MobileNotice() { const [isOpen, setIsOpen] = useState(false); useEffect(() => { setIsOpen(window.innerWidth <= 600); }, []); return ( setIsOpen(open)}> Phone Detected Using a phone with Blockmatic is not supported as of right now. Proceed with caution. ); } export default MobileNotice;