import { z } from "zod" import { columns } from "./components/columns.tsx" import { DataTable } from "./components/data-table.tsx" import { UserNav } from "./components/user-nav.tsx" import { taskSchema } from "./data/schema" import tasks from "./data/tasks.json" // Simulate a database read for tasks. function getTasks() { return z.array(taskSchema).parse(tasks) } export default function TaskPage() { return ( <>
Here's a list of your tasks for this month!