import { useSession } from "next-auth/react"; import type { ReactElement } from "react"; import Layout from "../components/layout"; import Settings from "../components/settings"; import type { NextPageWithLayout } from "./_app"; import { SessionProvider } from "next-auth/react"; import Head from "next/head"; 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}
); }; DocumentsPage.getLayout = function getLayout(page: ReactElement) { return {page}; }; export default DocumentsPage;