Browse Source

feat: add profile image

master
Muthu Kumar 3 weeks ago
parent
commit
633008f0e8
Failed to extract signature
  1. BIN
      public/assets/mkr-in-pixels.png
  2. 18
      src/pages/main/Home.tsx

BIN
public/assets/mkr-in-pixels.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

18
src/pages/main/Home.tsx

@ -37,6 +37,22 @@ const Home: React.FC = () => {
]}
/>
</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
className={cx(
section,
@ -85,6 +101,8 @@ const Home: React.FC = () => {
</a>
</button>
</section>
</article>
</main>
</Container>
);
};

Loading…
Cancel
Save