diff --git a/apps/web/components/layout.tsx b/apps/web/components/layout.tsx index 810fa22eb..970860612 100644 --- a/apps/web/components/layout.tsx +++ b/apps/web/components/layout.tsx @@ -7,8 +7,9 @@ import { signOut } from "next-auth/react"; import { Bars3Icon, BellIcon, - MagnifyingGlassIcon, XMarkIcon, + ArrowLeftOnRectangleIcon, + UserCircleIcon, } from "@heroicons/react/24/outline"; import Logo from "./logo"; @@ -24,7 +25,7 @@ const navigation = [ { name: "Settings", href: "/settings", current: true }, ]; const userNavigation = [ - { name: "Your Profile", href: "/settings/profile" }, + { name: "Your Profile", href: "/settings/profile", icon: UserCircleIcon }, { name: "Sign out", href: "", @@ -32,6 +33,7 @@ const userNavigation = [ e.preventDefault(); signOut({ callbackUrl: "/login" }); }, + icon: ArrowLeftOnRectangleIcon, }, ]; @@ -108,6 +110,10 @@ export default function Layout({ children }: any) { "block px-4 py-2 text-sm text-gray-700" )} > + {item.name} )} diff --git a/apps/web/components/login.tsx b/apps/web/components/login.tsx index 71ee387fc..6aa8bbec8 100644 --- a/apps/web/components/login.tsx +++ b/apps/web/components/login.tsx @@ -50,15 +50,18 @@ export default function Login() {
- Create your account and start using state
of the art
- document signing for free.
+ Create your account and start using
+ state-of-the-art document signing for free.
This is the dashboard page.
+