// student-desktop.jsx — desktop/laptop variant of student check-in screens const StudentDesktopName = () => { const [query, setQuery] = React.useState(""); const filtered = STUDENTS.filter((s) => s.name.toLowerCase().includes(query.toLowerCase())); return (