Skip to content

Commit

Permalink
fix: image sizing
Browse files Browse the repository at this point in the history
  • Loading branch information
danielsp45 committed Feb 18, 2024
1 parent 77d33f8 commit 693a398
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions apps/web/components/Member/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ export default function Member({ name, picture, role }: ITeamMember) {
<Image
alt={name}
src={`/img/team/${picture}`}
width={200}
height={200}
width={300}
height={300}
className="mx-auto h-56 w-56 rounded-full object-cover shadow-lg md:h-48 md:w-48"
/>
</div>
Expand Down
4 changes: 2 additions & 2 deletions apps/web/components/Speaker/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ export default function Speaker({ picture, name, role }) {
<Image
alt={name}
src={`/img/team/${picture}`}
width={150}
height={150}
width={200}
height={200}
className="mx-auto h-52 w-52 rounded-full object-cover shadow-lg md:h-32 md:w-32"
/>
</div>
Expand Down

0 comments on commit 693a398

Please sign in to comment.