Failed to extract signature
2 changed files with
63 additions and
45 deletions
-
BIN
public/assets/mkr-in-pixels.png
-
src/pages/main/Home.tsx
Width:
|
Height:
|
Size: 7.1 KiB
|
|
@ -37,6 +37,22 @@ const Home: React.FC = () => { |
|
|
]} |
|
|
]} |
|
|
/> |
|
|
/> |
|
|
</section> |
|
|
</section> |
|
|
|
|
|
<main |
|
|
|
|
|
className={css` |
|
|
|
|
|
display: flex; |
|
|
|
|
|
flex-wrap: wrap; |
|
|
|
|
|
gap: var(--distance); |
|
|
|
|
|
`}>
|
|
|
|
|
|
<img |
|
|
|
|
|
src="/assets/mkr-in-pixels.png" |
|
|
|
|
|
alt="MKR in pixels" |
|
|
|
|
|
style={{ |
|
|
|
|
|
imageRendering: "pixelated", |
|
|
|
|
|
height: "8rem", |
|
|
|
|
|
aspectRatio: "1", |
|
|
|
|
|
}} |
|
|
|
|
|
/> |
|
|
|
|
|
<article style={{ marginTop: "-0.4rem" }}> |
|
|
<section |
|
|
<section |
|
|
className={cx( |
|
|
className={cx( |
|
|
section, |
|
|
section, |
|
@ -85,6 +101,8 @@ const Home: React.FC = () => { |
|
|
</a> |
|
|
</a> |
|
|
</button> |
|
|
</button> |
|
|
</section> |
|
|
</section> |
|
|
|
|
|
</article> |
|
|
|
|
|
</main> |
|
|
</Container> |
|
|
</Container> |
|
|
); |
|
|
); |
|
|
}; |
|
|
}; |
|
|