Update Layout user nav to remove Profile and fix dropdown link
cgen-0d9c4c0f94354a4fa626b959075f012c
This commit is contained in:
parent
1eb001e417
commit
6a97cee726
1 changed files with 4 additions and 5 deletions
|
|
@ -30,7 +30,6 @@ export default function Layout({ children }: LayoutProps) {
|
|||
|
||||
const userNavigation = [
|
||||
{ name: "Dashboard", href: "/dashboard" },
|
||||
{ name: "Profile", href: "/profile" },
|
||||
{ name: "Home", href: "/" },
|
||||
{ name: "About", href: "/about" },
|
||||
{ name: "Contact", href: "/contact" },
|
||||
|
|
@ -140,10 +139,10 @@ export default function Layout({ children }: LayoutProps) {
|
|||
</Link>
|
||||
</DropdownMenuItem>
|
||||
<DropdownMenuItem asChild>
|
||||
<Link to="/profile" className="cursor-pointer">
|
||||
<Settings className="mr-2 h-4 w-4" />
|
||||
Profile Settings
|
||||
</Link>
|
||||
<Link to="/dashboard" className="cursor-pointer">
|
||||
<Settings className="mr-2 h-4 w-4" />
|
||||
Settings
|
||||
</Link>
|
||||
</DropdownMenuItem>
|
||||
<DropdownMenuSeparator />
|
||||
<DropdownMenuItem
|
||||
|
|
|
|||
Loading…
Reference in a new issue