import { useSession } from "next-auth/react"; import Head from "next/head"; import type { ReactElement } from "react"; import Layout from "../components/layout"; import Settings from "../components/settings"; import type { NextPageWithLayout } from "./_app"; import { CheckBadgeIcon, PaperAirplaneIcon, SunIcon, } from "@heroicons/react/24/outline"; const DashboardPage: NextPageWithLayout = () => { const status = useSession(); const stats = [ { name: "Draft", stat: "0", icon: SunIcon }, { name: "Sent", stat: "0", icon: PaperAirplaneIcon }, { name: "Signed", stat: "0", icon: CheckBadgeIcon }, ]; return ( <>