[taskboard] refactor tasks into full-page workspace

This commit is contained in:
2026-03-07 13:34:15 -08:00
parent 430dcd209b
commit 2bf137a437
11 changed files with 452 additions and 351 deletions

14
app/tasks/layout.tsx Normal file
View File

@@ -0,0 +1,14 @@
import { TasksSubnav } from "@/components/tasks-subnav";
export default function TasksLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<div className="min-w-0">
<TasksSubnav />
{children}
</div>
);
}