diff --git a/src/components/committee/index.tsx b/src/components/committee/index.tsx index d352ef5..4e49855 100644 --- a/src/components/committee/index.tsx +++ b/src/components/committee/index.tsx @@ -2,11 +2,23 @@ import { h, FunctionalComponent } from "preact"; import * as style from "./style.scss"; -const picture = new URL( - "/static/committee.png?as=webp&width=1200", +const Marjolein = new URL( + "/static/members/Marjolein.jpg?as=webp", import.meta.url ); +const Scott = new URL( + "/static/members/Scott.jpg?as=webp", + import.meta.url +); + +const Marit = new URL( + "/static/members/Marit.jpg?as=webp", + import.meta.url +); + + + /** * Renders the committee section. */ @@ -21,7 +33,7 @@ export const Committee: FunctionalComponent = () => (
Chair
@@ -30,7 +42,7 @@ export const Committee: FunctionalComponent = () => (Secretary
@@ -39,7 +51,7 @@ export const Committee: FunctionalComponent = () => (Treasure
@@ -54,7 +66,7 @@ export const Committee: FunctionalComponent = () => (Marijn van der Tuin
Simon Deuten
Scott Jochems
Qualitate Qua
diff --git a/static/members/Marit.jpg b/static/members/Marit.jpg new file mode 100644 index 0000000..d3e3863 Binary files /dev/null and b/static/members/Marit.jpg differ diff --git a/static/members/Marjolein.jpg b/static/members/Marjolein.jpg new file mode 100644 index 0000000..a19411b Binary files /dev/null and b/static/members/Marjolein.jpg differ diff --git a/static/members/Scott.jpg b/static/members/Scott.jpg new file mode 100644 index 0000000..6f5eb00 Binary files /dev/null and b/static/members/Scott.jpg differ