Fix: fixed image dimensions

This commit is contained in:
2024-01-16 13:56:41 +01:00
parent 37a8800896
commit 70deefcd6a
2 changed files with 3 additions and 3 deletions

View File

@@ -3,5 +3,5 @@ import Link from "next/link";
export const PageHeader = () =>
<div className="navbar bg-base-100 mb-6">
<Link className="btn btn-ghost text-xl" href="/"><Image src="/icon3.png" alt="logo" /> Utility Bills Tracker</Link>
<Link className="btn btn-ghost text-xl" href="/"><Image src="/icon3.png" alt="logo" width={48} height={48} /> Utility Bills Tracker</Link>
</div>