Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Commit

Permalink
fix: image width limit (#2172)
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-mba authored Nov 8, 2022
1 parent 1a31e9d commit 4078d3e
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,14 @@ export default function Home({ data }) {
</Link>
.
</p>
<Image
src="/mockup.png"
className="grid place-items-center w-screen"
alt="Mock up of LinkFree project"
width="800"
height="500"
/>
<div className="grid place-items-center w-screen">
<Image
src="/mockup.png"
alt="Mock up of LinkFree project"
width="1200"
height="638"
/>
</div>
</main>
</>
);
Expand Down

0 comments on commit 4078d3e

Please sign in to comment.