feat(home): add spotlight search functionality

This commit is contained in:
shafin-r
2026-02-14 03:24:22 +06:00
parent 7f82e640e0
commit 96eb2c13b0
4 changed files with 282 additions and 61 deletions

View File

@ -98,3 +98,16 @@ export const slideVariants = {
transition: { duration: 0.25 },
}),
};
export const formatGroupTitle = (status: string) => {
switch (status) {
case "IN_PROGRESS":
return "In Progress";
case "NOT_STARTED":
return "Not Started";
case "COMPLETED":
return "Completed";
default:
return status;
}
};