Skip to content

Commit

Permalink
refactor: use Image for typography rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
Keith-CY committed Oct 16, 2023
1 parent 7dcfa69 commit 0581a77
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/pages/media-kit/index.page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,16 @@ const MediaKit: NextPage = () => {
{
title: t('typography.title'),
description: t('typography.description'),
assets: <img alt="typography" src={`/images/media-kit/typography/articulat_cf.png`} loading="lazy" width="630" />,
assets: (
<Image
alt="typography"
src={`/images/media-kit/typography/articulat_cf.png`}
loading="lazy"
layout="responsive"
width="630"
height="402"
/>
),
},
{
title: t('cellModel.title'),
Expand Down

0 comments on commit 0581a77

Please sign in to comment.