Skip to content

Commit

Permalink
added questions page in dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
Ankur1493 committed May 15, 2024
1 parent 194f384 commit 6a9233d
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/components/profile-menu/ProfileDropdown.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
'use client';

import Link from 'next/link';
import { BookmarkIcon, HistoryIcon, LogOutIcon, User2Icon } from 'lucide-react';
import {
BookmarkIcon,
HistoryIcon,
LogOutIcon,
User2Icon,
Bird,
} from 'lucide-react';
import {
DropdownMenu,
DropdownMenuContent,
Expand All @@ -26,6 +32,11 @@ const ProfileDropdown = () => {
icon: <BookmarkIcon className="mr-2 h-4 w-4" />,
label: 'Bookmarks',
},
{
href: '/questions',
icon: <Bird className="mr-2 h-4 w-4" />,
label: 'Questions',
},
];

return (
Expand Down

0 comments on commit 6a9233d

Please sign in to comment.