diff --git a/src/app.css b/src/app.css index 298f1d3..39a9141 100644 --- a/src/app.css +++ b/src/app.css @@ -69,4 +69,10 @@ .external.external-mild::after { content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.5' height='13.5' aria-hidden='true' viewBox='0 0 24 24' class='iconExternalLink_nPIU'%3E%3Cpath fill='silver' d='M21 13v10h-21v-19h12v2h-10v15h17v-8h2zm3-12h-10.988l4.035 4-6.977 7.07 2.828 2.828 6.977-7.07 4.125 4.172v-11z'%3E%3C/path%3E%3C/svg%3E"); } + .person-item:hover img { + @apply grayscale-0 invert-0 blur-none; + } + .person-item:hover .text-mild { + @apply text-black; + } } diff --git a/src/app.html b/src/app.html index effe0d0..993a3f0 100644 --- a/src/app.html +++ b/src/app.html @@ -8,5 +8,6 @@
%sveltekit.body%
+ diff --git a/src/lib/components/PeopleList.svelte b/src/lib/components/PeopleList.svelte index 174a401..f262519 100644 --- a/src/lib/components/PeopleList.svelte +++ b/src/lib/components/PeopleList.svelte @@ -1,6 +1,7 @@ {#each items.map(getPerson) as item} -
+
-
{item.name}
diff --git a/src/lib/config.js b/src/lib/config.js index 475a908..a492068 100644 --- a/src/lib/config.js +++ b/src/lib/config.js @@ -61,6 +61,17 @@ people: name: Tree twitter: treecz img: tree.jpeg +- id: juraj-bednar + name: Juraj Bednar + twitter: jurbed + img: juraj-bednar.jpeg +- id: mario-havel + name: Mario Havel + twitter: TMIYChao + img: mario-havel.jpeg +speakers: +- juraj-bednar +- mario-havel hosts: - mykola - tree diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 2e96512..9fffc5f 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -12,7 +12,7 @@
-
+
diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 3d75ca0..c23b0eb 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -31,16 +31,20 @@
Speakers
-
To-be-announced
+
+
+ +
+
-
-
+
+
Hosts
-
-
- +
+
+
diff --git a/static/people/juraj-bednar.jpeg b/static/people/juraj-bednar.jpeg new file mode 100644 index 0000000..ffeb2da Binary files /dev/null and b/static/people/juraj-bednar.jpeg differ diff --git a/static/people/mario-havel.jpeg b/static/people/mario-havel.jpeg new file mode 100644 index 0000000..bd3991f Binary files /dev/null and b/static/people/mario-havel.jpeg differ