Skip to content

Commit

Permalink
fix img quality
Browse files Browse the repository at this point in the history
  • Loading branch information
RhysSullivan committed Oct 18, 2024
1 parent 8fb9ddb commit 91ddda6
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,8 @@ export default async function Page(props: {
<Image
src={productData.image_url ?? "/placeholder.svg?height=64&width=64"}
alt={`A small picture of ${productData.name}`}
height={64}
width={64}
quality={65}
height={256}
width={256}
className="h-64 w-64 flex-shrink-0 border-2"
/>
<p className="flex-grow text-base">{productData.description}</p>
Expand Down

0 comments on commit 91ddda6

Please sign in to comment.