From fdec99a2efccb3d29d1280099f8696945226fe22 Mon Sep 17 00:00:00 2001 From: Timur Ercan Date: Thu, 12 Jan 2023 16:19:57 +0100 Subject: [PATCH] design ideas --- apps/web/pages/documents.tsx | 103 ++++++++++++++++++++++++++++++++++- 1 file changed, 101 insertions(+), 2 deletions(-) diff --git a/apps/web/pages/documents.tsx b/apps/web/pages/documents.tsx index 39135f67d..b6510edec 100644 --- a/apps/web/pages/documents.tsx +++ b/apps/web/pages/documents.tsx @@ -10,13 +10,112 @@ import { PlusIcon } from "@heroicons/react/24/outline"; const DocumentsPage: NextPageWithLayout = () => { const { data: session } = useSession(); + const people = [ + { + name: "NDA acme Corps", + title: "✉ Sent", + email: "12.01.2023 16:08", + role: "", + }, + // More people... + ]; + return ( <> Documents | Documenso - -
+
+
+
+
+

+ Dashboard +

+
+

+ A list of all documents in your account including their status. +

+
+
+ +
+
+
+
+
+
+ + + + + + + + + + + + {people.map((person) => ( + + + + + + + + ))} + +
+ Title + + Status + + Modified + + Edit +
+ {person.name} + + {person.title} + + {person.email} + + {person.role} + + + Edit, {person.name} + +
+
+
+
+
+
+