diff --git a/components/BoardsList.tsx b/components/BoardsList.tsx new file mode 100644 index 0000000..91f1a89 --- /dev/null +++ b/components/BoardsList.tsx @@ -0,0 +1,37 @@ +import React from "react"; +import BoardIcon from "@/icons/icon-board.svg"; +const BoardsList = () => { + return ( +
+

all boards (3)

+ +
+ ); +}; + +export default BoardsList; diff --git a/components/CreateBoard.tsx b/components/CreateBoard.tsx new file mode 100644 index 0000000..b8a9bc7 --- /dev/null +++ b/components/CreateBoard.tsx @@ -0,0 +1,58 @@ +import TextInput from "./UI/TextInput"; +import CrossIcon from "@/icons/icon-cross.svg"; +import Button from "./UI/Button"; +import Select from "./UI/Select"; +const CreateBoard = () => { + return ( +
+

Add New Board

+ + +
+ +
+ {}} + /> +
+ +
+
+
+
+ ); +}; + +export default CreateBoard; diff --git a/components/CreateTask.tsx b/components/CreateTask.tsx new file mode 100644 index 0000000..b83b363 --- /dev/null +++ b/components/CreateTask.tsx @@ -0,0 +1,93 @@ +import Button from "./UI/Button"; +import CrossIcon from "@/icons/icon-cross.svg"; +import Select from "./UI/Select"; +import TextInput from "./UI/TextInput"; +const CreateTask = () => { + return ( +
+

Add New Task

+
+ +
+ +
+