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
2 changes: 1 addition & 1 deletion site/app/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const Navbar: React.FC = () => {
<div className="flex flex-wrap items-center justify-between">
<div className="flex items-center space-x-2">
<Link to="/" className="text-xl font-bold hover:text-blue-600 dark:hover:text-blue-400 transition-colors duration-200">
<img src="/logo.svg" alt="Lambda Calculator" className="w-8 h-8 inline mr-2" /> Lambda Calculator
<img src="logo.svg" alt="Lambda Calculator" className="w-8 h-8 inline mr-2" /> Lambda Calculator
Copy link

Copilot AI Oct 18, 2025

Choose a reason for hiding this comment

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

Changing from an absolute path /logo.svg to a relative path logo.svg may cause the logo to break on non-root routes. The absolute path ensures the logo loads correctly from any page depth. Consider reverting to /logo.svg or using an imported asset path instead.

Suggested change
<img src="logo.svg" alt="Lambda Calculator" className="w-8 h-8 inline mr-2" /> Lambda Calculator
<img src="/logo.svg" alt="Lambda Calculator" className="w-8 h-8 inline mr-2" /> Lambda Calculator

Copilot uses AI. Check for mistakes.
</Link>
</div>

Expand Down
Loading