Skip to content

Commit

Permalink
Merge pull request #642 from Ankur1493/questionsPage
Browse files Browse the repository at this point in the history
Questions page
  • Loading branch information
hkirat authored May 21, 2024
2 parents 57c7627 + 6a9233d commit e69cef4
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 e69cef4

Please sign in to comment.