import { Search } from "lucide-react"; import { Input } from "@/components/ui/input"; import { Link } from "react-router-dom"; import { CalendarDays } from "lucide-react"; interface HeaderProps { onSearch: (query: string) => void; showEmptyMessage?: boolean; } const Header = ({ onSearch, showEmptyMessage = false }: HeaderProps) => { return (
Hugging Face Logo AI Conference Deadlines AI Deadlines
onSearch(e.target.value)} />
{showEmptyMessage && (

There are no upcoming conferences for the selected categories - enable "Show past conferences" to see previous ones

)}

Countdowns to top CV/NLP/ML/Robotics/AI conference deadlines. To add/edit a conference, send in a{' '} pull request .
P.S. Is your paper already on Arxiv? Feel free to{' '} submit {' '}it to{' '} hf.co/papers {' '}and upload your artifacts such as{' '} models {', '} datasets {' '}and{' '} demos

); }; export default Header;