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 ( <>
A list of all documents in your account including their status.
| Title | Status | Modified | Edit | |
|---|---|---|---|---|
| {person.name} | {person.title} | {person.email} | {person.role} | Edit, {person.name} |
Get started by creating a new document.