Adjust icons and link destinations in user menu
cgen-70a62fbeceeb44a08852513a9798f5be
This commit is contained in:
parent
3ac1db5b4a
commit
03908e3248
1 changed files with 3 additions and 3 deletions
|
|
@ -11,7 +11,7 @@ import {
|
|||
DropdownMenuTrigger,
|
||||
} from "@/components/ui/dropdown-menu";
|
||||
import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar";
|
||||
import { User, Settings, LogOut, Bell, Sparkles } from "lucide-react";
|
||||
import { User, Settings, LogOut, Bell, Sparkles, UserCircle } from "lucide-react";
|
||||
|
||||
interface LayoutProps {
|
||||
children: React.ReactNode;
|
||||
|
|
@ -166,7 +166,7 @@ export default function Layout({ children }: LayoutProps) {
|
|||
</DropdownMenuItem>
|
||||
<DropdownMenuItem asChild>
|
||||
<Link to="/profile/me" className="cursor-pointer">
|
||||
<Settings className="mr-2 h-4 w-4" />
|
||||
<UserCircle className="mr-2 h-4 w-4" />
|
||||
My Profile
|
||||
</Link>
|
||||
</DropdownMenuItem>
|
||||
|
|
@ -177,7 +177,7 @@ export default function Layout({ children }: LayoutProps) {
|
|||
</Link>
|
||||
</DropdownMenuItem>
|
||||
<DropdownMenuItem asChild>
|
||||
<Link to="/dashboard" className="cursor-pointer">
|
||||
<Link to="/profile/me#settings" className="cursor-pointer">
|
||||
<Settings className="mr-2 h-4 w-4" />
|
||||
Settings
|
||||
</Link>
|
||||
|
|
|
|||
Loading…
Reference in a new issue