TaskGrid sorts your tasks so you don't have to. The primary views are:
- {[
- { icon: ListTodo, label: "Focus (Default)", desc: "Your most important tasks, ranked by a combination of Urgency and Priority." },
- {
- icon: LayoutDashboard,
- label: "Strategy Matrix",
- desc: "A 4-quadrant grid mapping Urgency vs. Priority.",
- sub: [
- { l: "Do First", d: "Urgent & Important" },
- { l: "Schedule", d: "Important but not urgent yet" },
- { l: "Delegate", d: "Urgent but not important" },
- { l: "Eliminate", d: "Neither urgent nor important" }
- ]
- },
- { icon: Snowflake, label: "Snowball", desc: "Shows your smallest tasks first to help you build momentum." },
- { icon: Pickaxe, label: "Dig In", desc: "Shows your largest tasks first for when you have time to focus." },
- { icon: Clock, label: "Urgency", desc: "Sorts tasks purely by when they are due." },
- { icon: ArrowUpCircle, label: "Priority", desc: "Sorts tasks purely by how important they are." }
- ].map(view => (
-
-
-
-
-
-
{view.label}
-
{view.desc}
- {view.sub && (
-
- {view.sub.map(s => (
-
- ))}
-
- )}
-
-
- ))}
-