import { useState } from "react"; import { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, } from "@/components/ui/dialog"; import { Button } from "@/components/ui/button"; const MIGRATION_URL = "https://paperswithcode.co/ai-deadlines"; const CONFERENCES_URL = "https://paperswithcode.co/conferences"; const FEEDBACK_ISSUES_URL = "https://github.com/huggingface/paperswithcode-feedback/issues"; const MigrationDialog = () => { const [open, setOpen] = useState(true); return ( This app has moved This app has been migrated to{" "} paperswithcode.co/ai-deadlines .

The new website includes:

  • Save deadlines to your Apple or Google Calendar
  • Browse conference papers by domain at{" "} paperswithcode.co/conferences
  • Sign in with your Hugging Face account and save your favorite papers (optional)

To submit new conference data, or raise any feedback, please open an issue at{" "} github.com/huggingface/paperswithcode-feedback/issues .

); }; export default MigrationDialog;