Skip to content

Commit

Permalink
add: messageIcon to navbar
Browse files Browse the repository at this point in the history
  • Loading branch information
Celesca committed Nov 25, 2024
1 parent 3b69696 commit 81c1975
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion frontend/src/components/Navbar.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useState, useEffect } from 'react';
import { Search, Menu, X, Bell } from 'lucide-react';
import { Search, Menu, X, Bell, InboxIcon } from 'lucide-react';
import axios from 'axios';

function Navbar() {
Expand Down Expand Up @@ -148,6 +148,10 @@ function Navbar() {
</>
)}
<NotificationBell />
<a href="/inbox" className="text-white hover:text-purple-200 transition duration-300 font-medium">
<InboxIcon className="h-6 w-6" />
</a>

</div>

<button
Expand Down Expand Up @@ -196,6 +200,10 @@ function Navbar() {
</>
)}
<NotificationBell />
<a href="/inbox" className="text-white hover:text-purple-200 transition duration-300 font-medium">
<InboxIcon className="h-6 w-6" />
</a>

</div>
</div>
)}
Expand Down

0 comments on commit 81c1975

Please sign in to comment.