This commit is contained in:
Timur Ercan
2023-01-12 11:52:48 +01:00
parent ba2fc66e24
commit 50a9c3d99e

View File

@ -5,7 +5,7 @@ import Layout from "../components/layout";
import Settings from "../components/settings"; import Settings from "../components/settings";
import type { NextPageWithLayout } from "./_app"; import type { NextPageWithLayout } from "./_app";
import { import {
CheckIcon, CheckBadgeIcon,
PaperAirplaneIcon, PaperAirplaneIcon,
SunIcon, SunIcon,
} from "@heroicons/react/24/outline"; } from "@heroicons/react/24/outline";
@ -15,7 +15,7 @@ const DashboardPage: NextPageWithLayout = () => {
const stats = [ const stats = [
{ name: "Draft", stat: "0", icon: SunIcon }, { name: "Draft", stat: "0", icon: SunIcon },
{ name: "Sent", stat: "0", icon: PaperAirplaneIcon }, { name: "Sent", stat: "0", icon: PaperAirplaneIcon },
{ name: "Signed", stat: "0", icon: CheckIcon }, { name: "Signed", stat: "0", icon: CheckBadgeIcon },
]; ];
return ( return (
<> <>