Rename public/icon.png to logo.png to fix blurry icon

Next.js App Router serves app/icon.png (32x32 favicon) at /icon.png,
shadowing the 256x256 public/icon.png. Rename to /logo.png so the
high-res image is served for the site logo.
This commit is contained in:
Lawrence Chen 2026-02-10 01:07:52 -08:00
parent a7549f59c1
commit c640355154
3 changed files with 2 additions and 2 deletions

View file

@ -28,7 +28,7 @@ export function SiteHeader({
<>
<Link href="/" className="flex items-center gap-2.5">
<img
src="/icon.png"
src="/logo.png"
alt="cmux"
width={24}
height={24}

View file

@ -12,7 +12,7 @@ export default function Home() {
{/* Header */}
<div className="flex items-center gap-4 mb-10" data-dev="header">
<img
src="/icon.png"
src="/logo.png"
alt="cmux icon"
width={48}
height={48}

View file

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 30 KiB

Before After
Before After