Skip to content

Commit

Permalink
Added Marijn and Merle also bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sajochems committed Jan 11, 2024
1 parent 584428f commit 6c71d19
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
14 changes: 12 additions & 2 deletions src/components/committee/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,16 @@ const Robert = new URL(
import.meta.url
);

const Merle = new URL(
"/static/members/Merle.jpg?as=webp",
import.meta.url
);

const Marijn = new URL(
"/static/members/Marijn.jpg?as=webp",
import.meta.url
);



/**
Expand Down Expand Up @@ -56,7 +66,7 @@ export const Committee: FunctionalComponent = () => (
</div>
<div class={style.person}>
<div class={style.polygon}>
<img src={Marit as any} alt="HackDelft Committee" />
<img src={Merle as any} alt="HackDelft Committee" />
</div>
<div>
<p class={style.function}>Treasure</p>
Expand All @@ -71,7 +81,7 @@ export const Committee: FunctionalComponent = () => (
<p class={style.name}>Marijn van der Tuin</p>
</div>
<div class={style.polygon}>
<img src={Marit as any} alt="HackDelft Committee" />
<img src={Marijn as any} alt="HackDelft Committee" />
</div>
</div>

Expand Down
6 changes: 6 additions & 0 deletions src/components/committee/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@
font-size: 16px;
}

.name {
margin: 0;
font-family: "Krona-One";
font-size: 16px;
}

.function {
color: $primary-color;
}
Expand Down
Binary file added static/members/Marijn.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/members/Merle.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 6c71d19

Please sign in to comment.