From 0ec2d7fb0564e4cc133a9b43d3c1eb3c1eec832c Mon Sep 17 00:00:00 2001 From: Kostia Date: Sun, 8 Jan 2023 19:24:08 +0200 Subject: [PATCH] Add /tasks/all route to website --- website/src/pages/tasks/all.tsx | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 website/src/pages/tasks/all.tsx diff --git a/website/src/pages/tasks/all.tsx b/website/src/pages/tasks/all.tsx new file mode 100644 index 00000000..6e4e926b --- /dev/null +++ b/website/src/pages/tasks/all.tsx @@ -0,0 +1,19 @@ +import Head from "next/head"; +import { TaskOption } from "src/components/Dashboard"; +import { getDashboardLayout } from "src/components/Layout"; + +const AllTasks = () => { + return ( + <> + + All Tasks - Open Assistant + + + + + ); +}; + +AllTasks.getLayout = (page) => getDashboardLayout(page); + +export default AllTasks;