Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions frontend/src/components/ui/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,25 +49,25 @@ const Footer = () => {
</div>
{/* Browse items list */}
<div className="text-center md:text-right">
<Link
to="/feed"
<Link
to="/feed"
onClick={handleBrowseClick}
className="flex items-center space-x-2 text-green-400 hover:text-green-300 text-sm transition-colors"
className="group flex items-center space-x-2 text-green-400 hover:text-green-300 text-sm transition-colors"
>
<Search className="h-4 w-4" />
<span className="hover:underline">Browse Items</span>
<Search className="h-4 w-4 no-underline" />
Copy link

Copilot AI Oct 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The no-underline class is unnecessary here. Icons don't have text-decoration by default, so this class has no effect and should be removed.

Suggested change
<Search className="h-4 w-4 no-underline" />
<Search className="h-4 w-4" />

Copilot uses AI. Check for mistakes.
<span className="group-hover:underline">Browse Items</span>
</Link>
</div>

{/* My Account Button */}
<div className="text-center md:text-right">
<Link
<Link
to={accountLink}
onClick={handleAccountClick}
className="flex items-center space-x-2 text-green-400 hover:text-green-300 text-sm transition-colors"
className="group flex items-center space-x-2 text-green-400 hover:text-green-300 text-sm transition-colors"
>
<User className="h-4 w-4" />
<span className="hover:underline">My Account</span>
<User className="h-4 w-4 no-underline" />
Copy link

Copilot AI Oct 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The no-underline class is unnecessary here. Icons don't have text-decoration by default, so this class has no effect and should be removed.

Suggested change
<User className="h-4 w-4 no-underline" />
<User className="h-4 w-4" />

Copilot uses AI. Check for mistakes.
<span className="group-hover:underline">My Account</span>
</Link>
</div>

Expand Down