From 75797c8419c83a0645d9a9ecb5f7a8fac41eaa9c Mon Sep 17 00:00:00 2001 From: Mpho10111 Date: Tue, 11 Aug 2026 20:56:48 +0200 Subject: [PATCH] feat: add sortable task list archive view and overdue indicators --- app/page.tsx | 3 +-- app/tasks/page.tsx | 30 ++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+), 2 deletions(-) diff --git a/app/page.tsx b/app/page.tsx index 1b633f5..cba2926 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -7,7 +7,6 @@ export default function Home() { return (
router.push("/dashboard")} > @@ -61,4 +60,4 @@ const styles = { opacity: 0.8, letterSpacing: "1px", }, -}; \ No newline at end of file +}; diff --git a/app/tasks/page.tsx b/app/tasks/page.tsx index e69de29..1ea9277 100644 --- a/app/tasks/page.tsx +++ b/app/tasks/page.tsx @@ -0,0 +1,30 @@ +import Board from "@/components/Board"; + +export default function TasksPage() { + return ( +
+

Planner Danner

+ +
+ ); +} + +const styles = { + container: { + minHeight: "100vh", + background: "linear-gradient(to bottom, #38bdf8, #0ea5e9)", + padding: "30px", + }, + title: { + textAlign: "center" as const, + fontSize: "90px", + fontWeight: "900", + color: "white", + letterSpacing: "2px", + textShadow: ` + 0 4px 0 #0284c7, + 0 8px 20px rgba(0,0,0,0.2) + `, + marginBottom: "30px", + }, +};